![]() |
This is Unofficial EPICS BASE Doxygen Site
|
#include <stdarg.h>#include "epicsThread.h"#include "libCaAPI.h"#include "caerr.h"#include "db_access.h"#include "caeventmask.h"
Include dependency graph for cadef.h:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Classes | |
| struct | connection_handler_args |
| struct | ca_access_rights |
| struct | access_rights_handler_args |
| struct | event_handler_args |
| struct | exception_handler_args |
Macros | |
| #define | VALID_TYPE(TYPE) (((unsigned short)TYPE)<=LAST_BUFFER_TYPE) |
| #define | CA_OP_GET 0 |
| #define | CA_OP_PUT 1 |
| #define | CA_OP_CREATE_CHANNEL 2 |
| #define | CA_OP_ADD_EVENT 3 |
| #define | CA_OP_CLEAR_EVENT 4 |
| #define | CA_OP_OTHER 5 |
| #define | CA_OP_CONN_UP 6 |
| #define | CA_OP_CONN_DOWN 7 |
| #define | CA_OP_SEARCH 2 |
| #define | SEVCHK(CA_ERROR_CODE, MESSAGE_STRING) |
| #define | TYPENOTCONN (-1) /* the channel's native type when disconnected */ |
| #define | CA_PRIORITY_MAX 99 |
| #define | CA_PRIORITY_MIN 0 |
| #define | CA_PRIORITY_DEFAULT CA_PRIORITY_MIN |
| #define | CA_PRIORITY_DB_LINKS 80 |
| #define | CA_PRIORITY_ARCHIVE 20 |
| #define | CA_PRIORITY_OPI 0 |
| #define | ca_bput(chan, pValue) ca_array_put(DBR_STRING, 1u, chan, (const dbr_string_t *) (pValue)) |
| #define | ca_rput(chan, pValue) ca_array_put(DBR_FLOAT, 1u, chan, (const dbr_float_t *) pValue) |
| #define | ca_put(type, chan, pValue) ca_array_put (type, 1u, chan, pValue) |
| #define | ca_put_callback(type, chan, pValue, pFunc, pArg) ca_array_put_callback(type, 1u, chan, pValue, pFunc, pArg) |
| #define | ca_bget(chan, pValue) ca_array_get(DBR_STRING, 1u, chan, (dbr_string_t *)(pValue)) |
| #define | ca_rget(chan, pValue) ca_array_get(DBR_FLOAT, 1u, chan, (dbr_float_t *)(pValue)) |
| #define | ca_get(type, chan, pValue) ca_array_get(type, 1u, chan, pValue) |
| #define | ca_bget_callback(chan, pFunc, pArg) ca_array_get_callback (DBR_STRING, 1u, chan, pFunc, pArg) |
| #define | ca_rget_callback(chan, pFunc, pArg) ca_array_get_callback (DBR_FLOAT, 1u, chan, pFunc, pArg) |
| #define | ca_get_callback(type, chan, pFunc, pArg) ca_array_get_callback (type, 1u, chan, pFunc, pArg) |
| #define | ca_poll() ca_pend_event(1e-12) |
| #define | ca_sg_get(gid, type, chan, pValue) ca_sg_array_get (gid, type, 1u, chan, pValue) |
| #define | ca_sg_put(gid, type, chan, pValue) ca_sg_array_put (gid, type, 1u, chan, pValue) |
| #define | ca_build_channel(NAME, XXXXX, CHIDPTR, YYYYY) ca_build_and_connect(NAME, XXXXX, 1, CHIDPTR, YYYYY, 0, 0) |
| #define | ca_array_build(NAME, XXXXX, ZZZZZZ, CHIDPTR, YYYYY) ca_build_and_connect(NAME, XXXXX, ZZZZZZ, CHIDPTR, YYYYY, 0, 0) |
| #define | ca_search(pChanName, pChanID) ca_search_and_connect (pChanName, pChanID, 0, 0) |
| #define | ca_add_event(type, chan, pFunc, pArg, pEventID) ca_add_array_event(type,1u,chan,pFunc,pArg,0.0,0.0,0.0,pEventID) |
| #define | ca_add_delta_event(TYPE, CHID, ENTRY, ARG, DELTA, EVID) ca_add_array_event(TYPE,1,CHID,ENTRY,ARG,DELTA,DELTA,0.0,EVID) |
| #define | ca_add_general_event(TYPE, CHID, ENTRY, ARG, P_DELTA, N_DELTA, TO, EVID) ca_add_array_event(TYPE,1,CHID,ENTRY,ARG,P_DELTA,N_DELTA,TO,EVID) |
| #define | ca_add_array_event(TYPE, COUNT, CHID, ENTRY, ARG, P_DELTA, N_DELTA, TO, EVID) ca_add_masked_array_event(TYPE,COUNT,CHID,ENTRY,ARG,P_DELTA,N_DELTA,TO,EVID, DBE_VALUE | DBE_ALARM) |
Typedefs | |
| typedef struct oldChannelNotify * | chid |
| typedef chid | chanId |
| typedef long | chtype |
| typedef struct oldSubscription * | evid |
| typedef double | ca_real |
| typedef void | caCh(struct connection_handler_args args) |
| typedef struct ca_access_rights | caar |
| typedef void | caArh(struct access_rights_handler_args args) |
| typedef struct event_handler_args | evargs |
| typedef void | caEventCallBackFunc(struct event_handler_args) |
| typedef unsigned | CA_SYNC_GID |
| typedef unsigned | capri |
| typedef void | caExceptionHandler(struct exception_handler_args) |
| typedef void | CAFDHANDLER(void *parg, int fd, int opened) |
| typedef int | caPrintfFunc(const char *pformat, va_list args) |
Enumerations | |
| enum | channel_state { cs_never_conn, cs_prev_conn, cs_conn, cs_closed } |
| enum | ca_preemptive_callback_select { ca_disable_preemptive_callback, ca_enable_preemptive_callback } |
Functions | |
| LIBCA_API void epicsStdCall | ca_test_event (struct event_handler_args) |
| LIBCA_API short epicsStdCall | ca_field_type (chid chan) |
| LIBCA_API unsigned long epicsStdCall | ca_element_count (chid chan) |
| LIBCA_API const char *epicsStdCall | ca_name (chid chan) |
| LIBCA_API void epicsStdCall | ca_set_puser (chid chan, void *puser) |
| LIBCA_API void *epicsStdCall | ca_puser (chid chan) |
| LIBCA_API unsigned epicsStdCall | ca_read_access (chid chan) |
| LIBCA_API unsigned epicsStdCall | ca_write_access (chid chan) |
| LIBCA_API enum channel_state epicsStdCall | ca_state (chid chan) |
| LIBCA_API int epicsStdCall | ca_task_initialize (void) |
| LIBCA_API int epicsStdCall | ca_context_create (enum ca_preemptive_callback_select select) |
| LIBCA_API void epicsStdCall | ca_detach_context () |
| LIBCA_API int epicsStdCall | ca_task_exit (void) |
| LIBCA_API void epicsStdCall | ca_context_destroy (void) |
| LIBCA_API int epicsStdCall | ca_create_channel (const char *pChanName, caCh *pConnStateCallback, void *pUserPrivate, capri priority, chid *pChanID) |
| LIBCA_API int epicsStdCall | ca_change_connection_event (chid chan, caCh *pfunc) |
| LIBCA_API int epicsStdCall | ca_replace_access_rights_event (chid chan, caArh *pfunc) |
| LIBCA_API int epicsStdCall | ca_add_exception_event (caExceptionHandler *pfunc, void *pArg) |
| LIBCA_API int epicsStdCall | ca_clear_channel (chid chanId) |
| LIBCA_API int epicsStdCall | ca_array_put (chtype type, unsigned long count, chid chanId, const void *pValue) |
| LIBCA_API int epicsStdCall | ca_array_put_callback (chtype type, unsigned long count, chid chanId, const void *pValue, caEventCallBackFunc *pFunc, void *pArg) |
| LIBCA_API int epicsStdCall | ca_array_get (chtype type, unsigned long count, chid chanId, void *pValue) |
| LIBCA_API int epicsStdCall | ca_array_get_callback (chtype type, unsigned long count, chid chanId, caEventCallBackFunc *pFunc, void *pArg) |
| LIBCA_API int epicsStdCall | ca_create_subscription (chtype type, unsigned long count, chid chanId, long mask, caEventCallBackFunc *pFunc, void *pArg, evid *pEventID) |
| LIBCA_API int epicsStdCall | ca_clear_subscription (evid eventID) |
| LIBCA_API chid epicsStdCall | ca_evid_to_chid (evid id) |
| LIBCA_API int epicsStdCall | ca_pend_event (ca_real timeOut) |
| LIBCA_API int epicsStdCall | ca_pend_io (ca_real timeOut) |
| LIBCA_API int epicsStdCall | ca_pend (ca_real timeout, int early) |
| LIBCA_API int epicsStdCall | ca_test_io (void) |
| LIBCA_API int epicsStdCall | ca_flush_io (void) |
| LIBCA_API void epicsStdCall | ca_signal (long errorCode, const char *pCtxStr) |
| LIBCA_API void epicsStdCall | ca_signal_with_file_and_lineno (long errorCode, const char *pCtxStr, const char *pFileStr, int lineNo) |
| LIBCA_API void epicsStdCall | ca_signal_formated (long ca_status, const char *pfilenm, int lineno, const char *pFormat,...) |
| LIBCA_API const char *epicsStdCall | ca_host_name (chid channel) |
| LIBCA_API unsigned epicsStdCall | ca_get_host_name (chid pChan, char *pBuf, unsigned bufLength) |
| LIBCA_API int epicsStdCall | ca_add_fd_registration (CAFDHANDLER *pHandler, void *pArg) |
| LIBCA_API int epicsStdCall | ca_sg_create (CA_SYNC_GID *pgid) |
| LIBCA_API int epicsStdCall | ca_sg_delete (const CA_SYNC_GID gid) |
| LIBCA_API int epicsStdCall | ca_sg_block (const CA_SYNC_GID gid, ca_real timeout) |
| LIBCA_API int epicsStdCall | ca_sg_test (const CA_SYNC_GID gid) |
| LIBCA_API int epicsStdCall | ca_sg_reset (const CA_SYNC_GID gid) |
| LIBCA_API int epicsStdCall | ca_sg_array_get (const CA_SYNC_GID gid, chtype type, unsigned long count, chid chan, void *pValue) |
| LIBCA_API int epicsStdCall | ca_sg_array_put (const CA_SYNC_GID gid, chtype type, unsigned long count, chid chan, const void *pValue) |
| LIBCA_API int epicsStdCall | ca_sg_stat (CA_SYNC_GID gid) |
| LIBCA_API void epicsStdCall | ca_dump_dbr (chtype type, unsigned count, const void *pbuffer) |
| LIBCA_API int epicsStdCall | ca_v42_ok (chid chan) |
| LIBCA_API const char *epicsStdCall | ca_version (void) |
| LIBCA_API int epicsStdCall | ca_replace_printf_handler (caPrintfFunc *ca_printf_func) |
| LIBCA_API unsigned epicsStdCall | ca_get_ioc_connection_count (void) |
| LIBCA_API int epicsStdCall | ca_preemtive_callback_is_enabled (void) |
| LIBCA_API void epicsStdCall | ca_self_test (void) |
| LIBCA_API unsigned epicsStdCall | ca_beacon_anomaly_count (void) |
| LIBCA_API unsigned epicsStdCall | ca_search_attempts (chid chan) |
| LIBCA_API double epicsStdCall | ca_beacon_period (chid chan) |
| LIBCA_API double epicsStdCall | ca_receive_watchdog_delay (chid chan) |
| LIBCA_API struct ca_client_context *epicsStdCall | ca_current_context () |
| LIBCA_API int epicsStdCall | ca_attach_context (struct ca_client_context *context) |
| LIBCA_API int epicsStdCall | ca_client_status (unsigned level) |
| LIBCA_API int epicsStdCall | ca_context_status (struct ca_client_context *, unsigned level) |
| LIBCA_API int epicsStdCall | ca_build_and_connect (const char *pChanName, chtype, unsigned long, chid *pChanID, void *, caCh *pFunc, void *pArg) |
| LIBCA_API int epicsStdCall | ca_search_and_connect (const char *pChanName, chid *pChanID, caCh *pFunc, void *pArg) |
| LIBCA_API int epicsStdCall | ca_channel_status (epicsThreadId tid) |
| LIBCA_API int epicsStdCall | ca_clear_event (evid eventID) |
| LIBCA_API int epicsStdCall | ca_add_masked_array_event (chtype type, unsigned long count, chid chanId, caEventCallBackFunc *pFunc, void *pArg, ca_real p_delta, ca_real n_delta, ca_real timeout, evid *pEventID, long mask) |
| LIBCA_API int epicsStdCall | ca_modify_user_name (const char *pUserName) |
| LIBCA_API int epicsStdCall | ca_modify_host_name (const char *pHostName) |
| #define ca_add_event | ( | type, | |
| chan, | |||
| pFunc, | |||
| pArg, | |||
| pEventID | |||
| ) | ca_add_array_event(type,1u,chan,pFunc,pArg,0.0,0.0,0.0,pEventID) |
| #define ca_add_general_event | ( | TYPE, | |
| CHID, | |||
| ENTRY, | |||
| ARG, | |||
| P_DELTA, | |||
| N_DELTA, | |||
| TO, | |||
| EVID | |||
| ) | ca_add_array_event(TYPE,1,CHID,ENTRY,ARG,P_DELTA,N_DELTA,TO,EVID) |
| #define ca_array_build | ( | NAME, | |
| XXXXX, | |||
| ZZZZZZ, | |||
| CHIDPTR, | |||
| YYYYY | |||
| ) | ca_build_and_connect(NAME, XXXXX, ZZZZZZ, CHIDPTR, YYYYY, 0, 0) |
| #define ca_bget | ( | chan, | |
| pValue | |||
| ) | ca_array_get(DBR_STRING, 1u, chan, (dbr_string_t *)(pValue)) |
| #define ca_bget_callback | ( | chan, | |
| pFunc, | |||
| pArg | |||
| ) | ca_array_get_callback (DBR_STRING, 1u, chan, pFunc, pArg) |
| #define ca_bput | ( | chan, | |
| pValue | |||
| ) | ca_array_put(DBR_STRING, 1u, chan, (const dbr_string_t *) (pValue)) |
| #define ca_build_channel | ( | NAME, | |
| XXXXX, | |||
| CHIDPTR, | |||
| YYYYY | |||
| ) | ca_build_and_connect(NAME, XXXXX, 1, CHIDPTR, YYYYY, 0, 0) |
| #define ca_get | ( | type, | |
| chan, | |||
| pValue | |||
| ) | ca_array_get(type, 1u, chan, pValue) |
| #define ca_get_callback | ( | type, | |
| chan, | |||
| pFunc, | |||
| pArg | |||
| ) | ca_array_get_callback (type, 1u, chan, pFunc, pArg) |
| #define ca_poll | ( | ) | ca_pend_event(1e-12) |
| #define CA_PRIORITY_DEFAULT CA_PRIORITY_MIN |
| #define ca_put | ( | type, | |
| chan, | |||
| pValue | |||
| ) | ca_array_put (type, 1u, chan, pValue) |
| #define ca_put_callback | ( | type, | |
| chan, | |||
| pValue, | |||
| pFunc, | |||
| pArg | |||
| ) | ca_array_put_callback(type, 1u, chan, pValue, pFunc, pArg) |
| #define ca_rget | ( | chan, | |
| pValue | |||
| ) | ca_array_get(DBR_FLOAT, 1u, chan, (dbr_float_t *)(pValue)) |
| #define ca_rget_callback | ( | chan, | |
| pFunc, | |||
| pArg | |||
| ) | ca_array_get_callback (DBR_FLOAT, 1u, chan, pFunc, pArg) |
| #define ca_rput | ( | chan, | |
| pValue | |||
| ) | ca_array_put(DBR_FLOAT, 1u, chan, (const dbr_float_t *) pValue) |
| #define ca_search | ( | pChanName, | |
| pChanID | |||
| ) | ca_search_and_connect (pChanName, pChanID, 0, 0) |
| #define ca_sg_get | ( | gid, | |
| type, | |||
| chan, | |||
| pValue | |||
| ) | ca_sg_array_get (gid, type, 1u, chan, pValue) |
| #define ca_sg_put | ( | gid, | |
| type, | |||
| chan, | |||
| pValue | |||
| ) | ca_sg_array_put (gid, type, 1u, chan, pValue) |
| #define SEVCHK | ( | CA_ERROR_CODE, | |
| MESSAGE_STRING | |||
| ) |
| #define TYPENOTCONN (-1) /* the channel's native type when disconnected */ |
| #define VALID_TYPE | ( | TYPE | ) | (((unsigned short)TYPE)<=LAST_BUFFER_TYPE) |
| typedef unsigned CA_SYNC_GID |
| typedef struct ca_access_rights caar |
| typedef void caArh(struct access_rights_handler_args args) |
| typedef void caCh(struct connection_handler_args args) |
| typedef void caEventCallBackFunc(struct event_handler_args) |
| typedef void caExceptionHandler(struct exception_handler_args) |
| typedef struct oldChannelNotify* chid |
| typedef struct event_handler_args evargs |
| typedef struct oldSubscription* evid |
| Enumerator | |
|---|---|
| ca_disable_preemptive_callback | |
| ca_enable_preemptive_callback | |
Definition at line 175 of file cadef.h.
| enum channel_state |
| Enumerator | |
|---|---|
| cs_never_conn | |
| cs_prev_conn | |
| cs_conn | |
| cs_closed | |
| LIBCA_API int epicsStdCall ca_add_exception_event | ( | caExceptionHandler * | pfunc, |
| void * | pArg | ||
| ) |
Definition at line 402 of file access.cpp.
| LIBCA_API int epicsStdCall ca_add_fd_registration | ( | CAFDHANDLER * | pHandler, |
| void * | pArg | ||
| ) |
Definition at line 623 of file access.cpp.
| LIBCA_API int epicsStdCall ca_add_masked_array_event | ( | chtype | type, |
| unsigned long | count, | ||
| chid | chanId, | ||
| caEventCallBackFunc * | pFunc, | ||
| void * | pArg, | ||
| ca_real | p_delta, | ||
| ca_real | n_delta, | ||
| ca_real | timeout, | ||
| evid * | pEventID, | ||
| long | mask | ||
| ) |
Definition at line 418 of file access.cpp.
| LIBCA_API int epicsStdCall ca_array_get | ( | chtype | type, |
| unsigned long | count, | ||
| chid | chanId, | ||
| void * | pValue | ||
| ) |
Definition at line 267 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_array_get_callback | ( | chtype | type, |
| unsigned long | count, | ||
| chid | chanId, | ||
| caEventCallBackFunc * | pFunc, | ||
| void * | pArg | ||
| ) |
Definition at line 335 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_array_put | ( | chtype | type, |
| unsigned long | count, | ||
| chid | chanId, | ||
| const void * | pValue | ||
| ) |
Definition at line 476 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_array_put_callback | ( | chtype | type, |
| unsigned long | count, | ||
| chid | chanId, | ||
| const void * | pValue, | ||
| caEventCallBackFunc * | pFunc, | ||
| void * | pArg | ||
| ) |
Definition at line 412 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_attach_context | ( | struct ca_client_context * | context | ) |
Definition at line 746 of file access.cpp.
| LIBCA_API unsigned epicsStdCall ca_beacon_anomaly_count | ( | void | ) |
Definition at line 681 of file access.cpp.
| LIBCA_API double epicsStdCall ca_beacon_period | ( | chid | chan | ) |
Definition at line 686 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_build_and_connect | ( | const char * | pChanName, |
| chtype | , | ||
| unsigned | long, | ||
| chid * | pChanID, | ||
| void * | , | ||
| caCh * | pFunc, | ||
| void * | pArg | ||
| ) |
Definition at line 218 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_channel_status | ( | epicsThreadId | tid | ) |
Definition at line 693 of file access.cpp.
| LIBCA_API int epicsStdCall ca_clear_channel | ( | chid | chanId | ) |
Definition at line 363 of file access.cpp.
| LIBCA_API int epicsStdCall ca_clear_event | ( | evid | eventID | ) |
Definition at line 431 of file access.cpp.
| LIBCA_API int epicsStdCall ca_clear_subscription | ( | evid | eventID | ) |
Definition at line 743 of file ca_client_context.cpp.
| LIBCA_API int epicsStdCall ca_client_status | ( | unsigned | level | ) |
Definition at line 701 of file access.cpp.
| LIBCA_API int epicsStdCall ca_context_create | ( | enum ca_preemptive_callback_select | select | ) |
Definition at line 172 of file access.cpp.
| LIBCA_API void epicsStdCall ca_context_destroy | ( | void | ) |
Definition at line 232 of file access.cpp.
| LIBCA_API int epicsStdCall ca_context_status | ( | struct ca_client_context * | , |
| unsigned | level | ||
| ) |
Definition at line 713 of file access.cpp.
| LIBCA_API int epicsStdCall ca_create_channel | ( | const char * | pChanName, |
| caCh * | pConnStateCallback, | ||
| void * | pUserPrivate, | ||
| capri | priority, | ||
| chid * | pChanID | ||
| ) |
Definition at line 288 of file access.cpp.
| LIBCA_API int epicsStdCall ca_create_subscription | ( | chtype | type, |
| unsigned long | count, | ||
| chid | chanId, | ||
| long | mask, | ||
| caEventCallBackFunc * | pFunc, | ||
| void * | pArg, | ||
| evid * | pEventID | ||
| ) |
Definition at line 530 of file oldChannelNotify.cpp.
| LIBCA_API struct ca_client_context* epicsStdCall ca_current_context | ( | ) |
Definition at line 726 of file access.cpp.
| LIBCA_API void epicsStdCall ca_detach_context | ( | ) |
Definition at line 759 of file access.cpp.
| LIBCA_API void epicsStdCall ca_dump_dbr | ( | chtype | type, |
| unsigned | count, | ||
| const void * | pbuffer | ||
| ) |
Definition at line 50 of file test_event.cpp.
| LIBCA_API unsigned long epicsStdCall ca_element_count | ( | chid | chan | ) |
Definition at line 630 of file oldChannelNotify.cpp.
Definition at line 437 of file access.cpp.
| LIBCA_API short epicsStdCall ca_field_type | ( | chid | chan | ) |
Definition at line 621 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_flush_io | ( | void | ) |
Definition at line 509 of file access.cpp.
| LIBCA_API unsigned epicsStdCall ca_get_host_name | ( | chid | pChan, |
| char * | pBuf, | ||
| unsigned | bufLength | ||
| ) |
Definition at line 175 of file oldChannelNotify.cpp.
| LIBCA_API unsigned epicsStdCall ca_get_ioc_connection_count | ( | void | ) |
Definition at line 670 of file access.cpp.
| LIBCA_API const char* epicsStdCall ca_host_name | ( | chid | channel | ) |
Definition at line 188 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_modify_host_name | ( | const char * | pHostName | ) |
Definition at line 212 of file access.cpp.
| LIBCA_API int epicsStdCall ca_modify_user_name | ( | const char * | pUserName | ) |
Definition at line 223 of file access.cpp.
| LIBCA_API const char* epicsStdCall ca_name | ( | chid | chan | ) |
Definition at line 674 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_pend | ( | ca_real | timeout, |
| int | early | ||
| ) |
Definition at line 443 of file access.cpp.
| LIBCA_API int epicsStdCall ca_pend_event | ( | ca_real | timeOut | ) |
Definition at line 457 of file access.cpp.
| LIBCA_API int epicsStdCall ca_pend_io | ( | ca_real | timeOut | ) |
Definition at line 484 of file access.cpp.
| LIBCA_API int epicsStdCall ca_preemtive_callback_is_enabled | ( | void | ) |
Definition at line 766 of file access.cpp.
| LIBCA_API void* epicsStdCall ca_puser | ( | chid | chan | ) |
Definition at line 208 of file oldChannelNotify.cpp.
| LIBCA_API unsigned epicsStdCall ca_read_access | ( | chid | chan | ) |
Definition at line 656 of file oldChannelNotify.cpp.
| LIBCA_API double epicsStdCall ca_receive_watchdog_delay | ( | chid | chan | ) |
Definition at line 692 of file oldChannelNotify.cpp.
Definition at line 240 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_replace_printf_handler | ( | caPrintfFunc * | ca_printf_func | ) |
Definition at line 650 of file access.cpp.
| LIBCA_API int epicsStdCall ca_search_and_connect | ( | const char * | pChanName, |
| chid * | pChanID, | ||
| caCh * | pFunc, | ||
| void * | pArg | ||
| ) |
Definition at line 279 of file access.cpp.
| LIBCA_API unsigned epicsStdCall ca_search_attempts | ( | chid | chan | ) |
Definition at line 680 of file oldChannelNotify.cpp.
| LIBCA_API void epicsStdCall ca_self_test | ( | void | ) |
Definition at line 777 of file access.cpp.
| LIBCA_API void epicsStdCall ca_set_puser | ( | chid | chan, |
| void * | puser | ||
| ) |
Definition at line 198 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_sg_array_get | ( | const CA_SYNC_GID | gid, |
| chtype | type, | ||
| unsigned long | count, | ||
| chid | chan, | ||
| void * | pValue | ||
| ) |
Definition at line 308 of file syncgrp.cpp.
| LIBCA_API int epicsStdCall ca_sg_array_put | ( | const CA_SYNC_GID | gid, |
| chtype | type, | ||
| unsigned long | count, | ||
| chid | chan, | ||
| const void * | pValue | ||
| ) |
Definition at line 246 of file syncgrp.cpp.
| LIBCA_API int epicsStdCall ca_sg_block | ( | const CA_SYNC_GID | gid, |
| ca_real | timeout | ||
| ) |
Definition at line 127 of file syncgrp.cpp.
| LIBCA_API int epicsStdCall ca_sg_create | ( | CA_SYNC_GID * | pgid | ) |
Definition at line 24 of file syncgrp.cpp.
| LIBCA_API int epicsStdCall ca_sg_delete | ( | const CA_SYNC_GID | gid | ) |
Definition at line 68 of file syncgrp.cpp.
| LIBCA_API int epicsStdCall ca_sg_reset | ( | const CA_SYNC_GID | gid | ) |
Definition at line 155 of file syncgrp.cpp.
| LIBCA_API int epicsStdCall ca_sg_stat | ( | CA_SYNC_GID | gid | ) |
Definition at line 179 of file syncgrp.cpp.
| LIBCA_API int epicsStdCall ca_sg_test | ( | const CA_SYNC_GID | gid | ) |
Definition at line 202 of file syncgrp.cpp.
| LIBCA_API void epicsStdCall ca_signal | ( | long | errorCode, |
| const char * | pCtxStr | ||
| ) |
Definition at line 546 of file access.cpp.
| LIBCA_API void epicsStdCall ca_signal_formated | ( | long | ca_status, |
| const char * | pfilenm, | ||
| int | lineno, | ||
| const char * | pFormat, | ||
| ... | |||
| ) |
Definition at line 587 of file access.cpp.
| LIBCA_API void epicsStdCall ca_signal_with_file_and_lineno | ( | long | errorCode, |
| const char * | pCtxStr, | ||
| const char * | pFileStr, | ||
| int | lineNo | ||
| ) |
Definition at line 577 of file access.cpp.
| LIBCA_API enum channel_state epicsStdCall ca_state | ( | chid | chan | ) |
Definition at line 639 of file oldChannelNotify.cpp.
| LIBCA_API int epicsStdCall ca_task_exit | ( | void | ) |
Definition at line 251 of file access.cpp.
| LIBCA_API int epicsStdCall ca_task_initialize | ( | void | ) |
Definition at line 166 of file access.cpp.
| LIBCA_API void epicsStdCall ca_test_event | ( | struct event_handler_args | ) |
Definition at line 20 of file test_event.cpp.
| LIBCA_API int epicsStdCall ca_test_io | ( | void | ) |
Definition at line 526 of file access.cpp.
| LIBCA_API int epicsStdCall ca_v42_ok | ( | chid | chan | ) |
Definition at line 701 of file oldChannelNotify.cpp.
| LIBCA_API const char* epicsStdCall ca_version | ( | void | ) |
Definition at line 641 of file access.cpp.
| LIBCA_API unsigned epicsStdCall ca_write_access | ( | chid | chan | ) |
Definition at line 665 of file oldChannelNotify.cpp.