Searched refs:handle (Results 176 - 200 of 2331) sorted by relevance

1234567891011>>

/external/libsepol/src/
H A Dboolean_record.c21 int sepol_bool_key_create(sepol_handle_t * handle, argument
29 ERR(handle, "out of memory, " "could not create boolean key");
49 int sepol_bool_key_extract(sepol_handle_t * handle,
54 if (sepol_bool_key_create(handle, boolean->name, key_ptr) < 0) {
55 ERR(handle, "could not extract key from boolean %s",
91 int sepol_bool_set_name(sepol_handle_t * handle,
97 ERR(handle, "out of memory, could not set boolean name");
125 int sepol_bool_create(sepol_handle_t * handle, sepol_bool_t ** bool_ptr)
131 ERR(handle, "out of memory, "
146 int sepol_bool_clone(sepol_handle_t * handle,
[all...]
H A Dcontext_record.c33 int sepol_context_set_user(sepol_handle_t * handle,
39 ERR(handle, "out of memory, could not set "
60 int sepol_context_set_role(sepol_handle_t * handle,
66 ERR(handle, "out of memory, could not set "
86 int sepol_context_set_type(sepol_handle_t * handle,
92 ERR(handle, "out of memory, could not set "
112 int sepol_context_set_mls(sepol_handle_t * handle,
118 ERR(handle, "out of memory, could not set "
130 int sepol_context_create(sepol_handle_t * handle, sepol_context_t ** con_ptr)
137 ERR(handle, "ou
[all...]
H A Dcontext.c11 #include "handle.h"
87 int context_to_string(sepol_handle_t * handle, argument
135 ERR(handle, "out of memory, could not convert " "context to string");
143 int context_from_record(sepol_handle_t * handle, argument
162 ERR(handle, "out of memory");
171 ERR(handle, "user %s is not defined", user);
180 ERR(handle, "role %s is not defined", role);
189 ERR(handle, "type %s is not defined", type);
196 ERR(handle, "MLS is disabled, but MLS context \"%s\" found",
200 ERR(handle, "ML
242 context_to_record(sepol_handle_t * handle, const policydb_t * policydb, const context_struct_t * context, sepol_context_t ** record) argument
291 context_from_string(sepol_handle_t * handle, const policydb_t * policydb, context_struct_t ** cptr, const char *con_str, size_t con_str_len) argument
328 sepol_context_check(sepol_handle_t * handle, const sepol_policydb_t * policydb, const sepol_context_t * context) argument
[all...]
H A Dnodes.c7 #include "handle.h"
14 static int node_from_record(sepol_handle_t * handle, argument
30 if (sepol_node_get_addr_bytes(handle, data, &addr_buf, &addr_bsize) < 0)
32 if (sepol_node_get_mask_bytes(handle, data, &mask_buf, &mask_bsize) < 0)
47 ERR(handle, "unsupported protocol %u", proto);
56 if (context_from_record(handle, policydb, &tmp_con,
68 ERR(handle, "out of memory");
79 ERR(handle, "could not create node structure");
83 static int node_to_record(sepol_handle_t * handle, argument
93 if (sepol_node_create(handle,
170 sepol_node_exists(sepol_handle_t * handle, const sepol_policydb_t * p, const sepol_node_key_t * key, int *response) argument
230 sepol_node_query(sepol_handle_t * handle, const sepol_policydb_t * p, const sepol_node_key_t * key, sepol_node_t ** response) argument
296 sepol_node_modify(sepol_handle_t * handle, sepol_policydb_t * p, const sepol_node_key_t * key, const sepol_node_t * data) argument
345 sepol_node_iterate(sepol_handle_t * handle, const sepol_policydb_t * p, int (*fn) (const sepol_node_t * node, void *fn_arg), void *arg) argument
[all...]
H A Dusers.c7 #include "handle.h"
15 static int user_to_record(sepol_handle_t * handle, argument
28 if (sepol_user_create(handle, &tmp_record) < 0)
31 if (sepol_user_set_name(handle, tmp_record, name) < 0)
38 if (sepol_user_add_role(handle, tmp_record, role) < 0)
51 ERR(handle, "could not copy MLS level");
57 ERR(handle, "could not copy MLS level");
61 if (mls_to_string(handle, policydb, &context, &str) < 0) {
67 if (sepol_user_set_mlslevel(handle, tmp_record, str) < 0) {
75 ERR(handle, "coul
101 sepol_user_modify(sepol_handle_t * handle, sepol_policydb_t * p, const sepol_user_key_t * key, const sepol_user_t * user) argument
315 sepol_user_query(sepol_handle_t * handle, const sepol_policydb_t * p, const sepol_user_key_t * key, sepol_user_t ** response) argument
345 sepol_user_iterate(sepol_handle_t * handle, const sepol_policydb_t * p, int (*fn) (const sepol_user_t * user, void *fn_arg), void *arg) argument
[all...]
H A Dinterfaces.c5 #include "handle.h"
12 static int iface_from_record(sepol_handle_t * handle, argument
30 if (context_from_record(handle, policydb,
39 if (context_from_record(handle, policydb,
51 ERR(handle, "out of memory");
62 ERR(handle, "error creating interface structure");
66 static int iface_to_record(sepol_handle_t * handle, argument
78 if (sepol_iface_create(handle, &tmp_record) < 0)
81 if (sepol_iface_set_name(handle, tmp_record, name) < 0)
84 if (context_to_record(handle, policyd
134 sepol_iface_query(sepol_handle_t * handle, const sepol_policydb_t * p, const sepol_iface_key_t * key, sepol_iface_t ** response) argument
165 sepol_iface_modify(sepol_handle_t * handle, sepol_policydb_t * p, const sepol_iface_key_t * key, const sepol_iface_t * data) argument
237 sepol_iface_iterate(sepol_handle_t * handle, const sepol_policydb_t * p, int (*fn) (const sepol_iface_t * iface, void *fn_arg), void *arg) argument
[all...]
H A Duser_record.c30 int sepol_user_key_create(sepol_handle_t * handle, argument
38 ERR(handle, "out of memory, "
59 int sepol_user_key_extract(sepol_handle_t * handle,
64 if (sepol_user_key_create(handle, user->name, key_ptr) < 0) {
65 ERR(handle, "could not extract key from user %s", user->name);
96 int sepol_user_set_name(sepol_handle_t * handle, argument
102 ERR(handle, "out of memory, could not set name");
121 int sepol_user_set_mlslevel(sepol_handle_t * handle,
127 ERR(handle, "out of memory, "
146 int sepol_user_set_mlsrange(sepol_handle_t * handle,
170 sepol_user_add_role(sepol_handle_t * handle, sepol_user_t * user, const char *role) argument
260 sepol_user_get_roles(sepol_handle_t * handle, const sepol_user_t * user, const char ***roles_arr, unsigned int *num_roles) argument
302 sepol_user_create(sepol_handle_t * handle, sepol_user_t ** user_ptr) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/loadso/win32/
H A DSDL_sysloadso.c36 void *handle = NULL; local
46 handle = (void *)LoadLibrary(sofile_t);
49 if ( handle == NULL ) {
65 handle = (void *)LoadLibrary(sofile);
68 if ( handle == NULL ) {
78 if ( handle == NULL ) {
81 return(handle);
84 void *SDL_LoadFunction(void *handle, const char *name) argument
98 symbol = (void *)GetProcAddress((HMODULE)handle, name_t);
115 symbol = (void *)GetProcAddress((HMODULE)handle, nam
132 SDL_UnloadObject(void *handle) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_wrapper.c126 void WebRtc_FreeDelayEstimatorFarend(void* handle) { argument
127 DelayEstimatorFarend* self = (DelayEstimatorFarend*) handle;
129 if (handle == NULL) {
175 int WebRtc_InitDelayEstimatorFarend(void* handle) { argument
176 DelayEstimatorFarend* self = (DelayEstimatorFarend*) handle;
194 void WebRtc_SoftResetDelayEstimatorFarend(void* handle, int delay_shift) { argument
195 DelayEstimatorFarend* self = (DelayEstimatorFarend*) handle;
200 int WebRtc_AddFarSpectrumFix(void* handle, uint16_t* far_spectrum, argument
202 DelayEstimatorFarend* self = (DelayEstimatorFarend*) handle;
229 int WebRtc_AddFarSpectrumFloat(void* handle, floa argument
254 WebRtc_FreeDelayEstimator(void* handle) argument
302 WebRtc_InitDelayEstimator(void* handle) argument
321 WebRtc_SoftResetDelayEstimator(void* handle, int delay_shift) argument
327 WebRtc_set_lookahead(void* handle, int lookahead) argument
339 WebRtc_lookahead(void* handle) argument
346 WebRtc_set_allowed_offset(void* handle, int allowed_offset) argument
356 WebRtc_get_allowed_offset(const void* handle) argument
365 WebRtc_enable_robust_validation(void* handle, int enable) argument
379 WebRtc_is_robust_validation_enabled(const void* handle) argument
388 WebRtc_DelayEstimatorProcessFix(void* handle, uint16_t* near_spectrum, int spectrum_size, int near_q) argument
420 WebRtc_DelayEstimatorProcessFloat(void* handle, float* near_spectrum, int spectrum_size) argument
445 WebRtc_last_delay(void* handle) argument
455 WebRtc_last_delay_quality(void* handle) argument
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DShaderLang.cpp27 static bool checkVariableMaxLengths(const ShHandle handle, argument
31 ShGetInfo(handle, SH_ACTIVE_UNIFORM_MAX_LENGTH, &activeUniformLimit);
33 ShGetInfo(handle, SH_ACTIVE_ATTRIBUTE_MAX_LENGTH, &activeAttribLimit);
35 ShGetInfo(handle, SH_VARYING_MAX_LENGTH, &varyingLimit);
41 static bool checkMappedNameMaxLength(const ShHandle handle, size_t expectedValue) argument
44 ShGetInfo(handle, SH_MAPPED_NAME_MAX_LENGTH, &mappedNameMaxLength);
136 void ShDestruct(ShHandle handle) argument
138 if (handle == 0)
141 TShHandleBase* base = static_cast<TShHandleBase*>(handle);
147 void ShGetBuiltInResourcesString(const ShHandle handle, size_ argument
171 ShCompile( const ShHandle handle, const char* const shaderStrings[], size_t numStrings, int compileOptions) argument
189 ShGetInfo(const ShHandle handle, ShShaderInfo pname, size_t* params) argument
262 ShGetInfoLog(const ShHandle handle, char* infoLog) argument
278 ShGetObjectCode(const ShHandle handle, char* objCode) argument
291 ShGetVariableInfo(const ShHandle handle, ShShaderInfo varType, int index, size_t* length, int* size, ShDataType* type, ShPrecisionType* precision, int* staticUse, char* name, char* mappedName) argument
358 ShGetNameHashingEntry(const ShHandle handle, int index, char* name, char* hashedName) argument
401 ShGetInfoPointer(const ShHandle handle, ShShaderInfo pname, void** params) argument
[all...]
/external/bluetooth/bluedroid/btif/co/
H A Dbta_pan_co.c75 void bta_pan_co_open(UINT16 handle, UINT8 app_id, tBTA_PAN_ROLE local_role, argument
79 "handle:%d", app_id, local_role, peer_role, handle);
82 conn = btpan_new_conn(handle, peer_addr, local_role, peer_role);
86 "conn->handle:%d should = handle:%d, local_role:%d, remote_role:%d",
87 btpan_cb.tap_fd, btpan_cb.open_count, conn->handle, handle,
92 conn->handle = handle;
120 bta_pan_co_close(UINT16 handle, UINT8 app_id) argument
159 bta_pan_co_tx_path(UINT16 handle, UINT8 app_id) argument
217 bta_pan_co_rx_path(UINT16 handle, UINT8 app_id) argument
238 bta_pan_co_tx_write(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, UINT8 *p_data, UINT16 len, BOOLEAN ext, BOOLEAN forward) argument
268 bta_pan_co_tx_writebuf(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, BT_HDR *p_buf, BOOLEAN ext, BOOLEAN forward) argument
298 bta_pan_co_rx_flow(UINT16 handle, UINT8 app_id, BOOLEAN enable) argument
320 bta_pan_co_pfilt_ind(UINT16 handle, BOOLEAN indication, tBTA_PAN_STATUS result, UINT16 len, UINT8 *p_filters) argument
341 bta_pan_co_mfilt_ind(UINT16 handle, BOOLEAN indication, tBTA_PAN_STATUS result, UINT16 len, UINT8 *p_filters) argument
[all...]
/external/chromium_org/mojo/public/cpp/environment/lib/
H A Ddefault_async_waiter.cc19 // . when the handle is ready (or errored).
23 RunLoopHandlerImpl(const Handle& handle, argument
26 : handle_(handle),
36 virtual void OnHandleReady(const Handle& handle) MOJO_OVERRIDE {
40 virtual void OnHandleError(const Handle& handle,
47 // Delete this to unregister the handle. That way if the callback
63 MojoAsyncWaitID AsyncWait(MojoHandle handle, argument
71 // |run_loop_handler| is destroyed either when the handle is ready or if
74 new RunLoopHandlerImpl(Handle(handle), callback, closure);
75 run_loop->AddHandler(run_loop_handler, Handle(handle), signal
[all...]
/external/bluetooth/bluedroid/stack/include/
H A Davdtc_api.h61 typedef void tAVDTC_CTRL_CBACK(UINT8 handle, BD_ADDR bd_addr, UINT8 event, tAVDTC_CTRL *p_data);
124 AVDT_API extern void AVDTC_GetConfigReq(UINT8 handle);
135 AVDT_API extern void AVDTC_GetConfigRsp(UINT8 handle, UINT8 label, tAVDT_CFG *p_cfg);
146 AVDT_API extern void AVDTC_OpenReq(UINT8 handle);
157 AVDT_API extern void AVDTC_OpenRsp(UINT8 handle, UINT8 label);
179 AVDT_API extern void AVDTC_CloseRsp(UINT8 handle, UINT8 label);
201 AVDT_API extern void AVDTC_AbortReq(UINT8 handle);
212 AVDT_API extern void AVDTC_AbortRsp(UINT8 handle, UINT8 label);
223 AVDT_API extern void AVDTC_Rej(UINT8 handle, BD_ADDR bd_addr, UINT8 cmd, UINT8 label,
/external/chromium_org/ui/surface/
H A Dtransport_dib_posix.cc40 TransportDIB* TransportDIB::Map(Handle handle) { argument
41 scoped_ptr<TransportDIB> dib(CreateWithHandle(handle));
48 TransportDIB* TransportDIB::CreateWithHandle(Handle handle) { argument
49 return new TransportDIB(handle);
75 if (!is_valid_handle(handle()))
86 if ((fstat(shared_memory_.handle().fd, &st) != 0) ||
102 return handle();
108 TransportDIB::Handle TransportDIB::handle() const { function in class:TransportDIB
109 return shared_memory_.handle();
/external/libpcap/
H A Dpcap-usb-linux.c215 int usb_mmap(pcap_t* handle) argument
217 struct pcap_usb_linux *handlep = handle->priv;
218 int len = ioctl(handle->fd, MON_IOCQ_RING_SIZE);
224 MAP_SHARED, handle->fd, 0);
341 usb_activate(pcap_t* handle) argument
343 struct pcap_usb_linux *handlep = handle->priv;
347 handle->bufsize = handle->snapshot;
348 handle->offset = 0;
349 handle
465 usb_read_linux(pcap_t *handle, int max_packets, pcap_handler callback, u_char *user) argument
663 usb_inject_linux(pcap_t *handle, const void *buf, size_t size) argument
671 usb_stats_linux(pcap_t *handle, struct pcap_stat *stats) argument
755 usb_stats_linux_bin(pcap_t *handle, struct pcap_stat *stats) argument
779 usb_read_linux_bin(pcap_t *handle, int max_packets, pcap_handler callback, u_char *user) argument
838 usb_read_linux_mmap(pcap_t *handle, int max_packets, pcap_handler callback, u_char *user) argument
922 usb_cleanup_linux_mmap(pcap_t* handle) argument
[all...]
/external/bluetooth/bluedroid/stack/rfcomm/
H A Dport_api.c63 ** p_handle - OUT pointer to the handle.
205 ** Parameters: handle - Handle returned in the RFCOMM_CreateConnection
208 int RFCOMM_RemoveConnection (UINT16 handle) argument
212 RFCOMM_TRACE_API ("RFCOMM_RemoveConnection() handle:%d", handle);
214 /* Check if handle is valid to avoid crashing */
215 if ((handle == 0) || (handle > MAX_RFC_PORTS))
217 RFCOMM_TRACE_ERROR ("RFCOMM_RemoveConnection() BAD handle:%d", handle);
244 RFCOMM_RemoveServer(UINT16 handle) argument
461 PORT_CheckConnection(UINT16 handle, BD_ADDR bd_addr, UINT16 *p_lcid) argument
563 PORT_SetState(UINT16 handle, tPORT_STATE *p_settings) argument
612 PORT_GetRxQueueCnt(UINT16 handle, UINT16 *p_rx_queue_count) argument
656 PORT_GetState(UINT16 handle, tPORT_STATE *p_settings) argument
696 PORT_Control(UINT16 handle, UINT8 signal) argument
783 PORT_FlowControl(UINT16 handle, BOOLEAN enable) argument
862 PORT_FlowControl_MaxCredit(UINT16 handle, BOOLEAN enable) argument
942 PORT_GetModemStatus(UINT16 handle, UINT8 *p_signal) argument
982 PORT_ClearError(UINT16 handle, UINT16 *p_errors, tPORT_STATUS *p_status) argument
1021 PORT_SendError(UINT16 handle, UINT8 errors) argument
1060 PORT_GetQueueStatus(UINT16 handle, tPORT_STATUS *p_status) argument
1109 PORT_Purge(UINT16 handle, UINT8 purge_flags) argument
1187 PORT_ReadData(UINT16 handle, char *p_data, UINT16 max_len, UINT16 *p_len) argument
1293 PORT_Read(UINT16 handle, BT_HDR **pp_buf) argument
1415 PORT_Write(UINT16 handle, BT_HDR *p_buf) argument
1480 PORT_WriteDataCO(UINT16 handle, int* p_len) argument
1641 PORT_WriteData(UINT16 handle, char *p_data, UINT16 max_len, UINT16 *p_len) argument
1764 PORT_Test(UINT16 handle, UINT8 *p_data, UINT16 len) argument
[all...]
/external/chromium_org/base/threading/
H A Dplatform_thread_unittest.cc32 PlatformThreadHandle handle; local
35 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
36 PlatformThread::Join(handle);
42 PlatformThreadHandle handle[arraysize(thread)]; local
47 ASSERT_TRUE(PlatformThread::Create(0, &thread[n], &handle[n]));
49 PlatformThread::Join(handle[n]);
83 PlatformThreadHandle handle; local
86 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
87 PlatformThread::Join(handle);
99 PlatformThreadHandle handle[arraysiz local
[all...]
/external/chromium_org/chrome/browser/common/
H A Dcancelable_request.cc14 Handle handle; local
18 handle = next_handle_;
25 consumer->OnRequestAdded(this, handle);
27 request->Init(this, handle, consumer);
28 return handle;
31 void CancelableRequestProvider::CancelRequest(Handle handle) { argument
33 CancelRequestLocked(pending_requests_.find(handle));
60 void CancelableRequestProvider::RequestCompleted(Handle handle) { argument
65 CancelableRequestMap::iterator i = pending_requests_.find(handle);
80 consumer->OnRequestRemoved(this, handle);
102 Init(CancelableRequestProvider* provider, CancelableRequestProvider::Handle handle, CancelableRequestConsumerBase* consumer) argument
[all...]
/external/chromium_org/content/browser/android/
H A Dchild_process_launcher_android.h20 // The created process handle is returned to the |callback| on success, 0 is
28 // Stops a child process based on the handle returned form
30 void StopChildProcess(base::ProcessHandle handle);
32 bool IsChildProcessOomProtected(base::ProcessHandle handle);
34 void SetChildProcessInForeground(base::ProcessHandle handle,
/external/chromium_org/mojo/common/test/
H A Dtest_utils_posix.cc17 bool BlockingWrite(const embedder::PlatformHandle& handle, argument
21 int original_flags = fcntl(handle.fd, F_GETFL);
23 fcntl(handle.fd, F_SETFL, original_flags & (~O_NONBLOCK)) != 0) {
27 ssize_t result = HANDLE_EINTR(write(handle.fd, buffer, bytes_to_write));
29 fcntl(handle.fd, F_SETFL, original_flags);
38 bool BlockingRead(const embedder::PlatformHandle& handle, argument
42 int original_flags = fcntl(handle.fd, F_GETFL);
44 fcntl(handle.fd, F_SETFL, original_flags & (~O_NONBLOCK)) != 0) {
48 ssize_t result = HANDLE_EINTR(read(handle.fd, buffer, buffer_size));
50 fcntl(handle
59 NonBlockingRead(const embedder::PlatformHandle& handle, void* buffer, size_t buffer_size, size_t* bytes_read) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dwin32toolhelp_unittest.cc51 static Win32ToolhelpTest* AsFixture(HANDLE handle) { argument
52 return reinterpret_cast<Win32ToolhelpTest*>(handle);
55 static bool First(HANDLE handle, TestData* d) { argument
56 Win32ToolhelpTest* tst = Win32ToolhelpTest::AsFixture(handle);
71 static bool Next(HANDLE handle, TestData* d) { argument
72 Win32ToolhelpTest* tst = Win32ToolhelpTest::AsFixture(handle);
84 static bool Fail(HANDLE handle, TestData* d) { argument
85 Win32ToolhelpTest* tst = Win32ToolhelpTest::AsFixture(handle);
90 static bool CloseHandle(HANDLE handle) { argument
91 Win32ToolhelpTest* tst = Win32ToolhelpTest::AsFixture(handle);
153 First(HANDLE handle, Type* t) argument
157 Next(HANDLE handle, Type* t) argument
161 CloseHandle(HANDLE handle) argument
170 First(HANDLE handle, Type* t) argument
174 Next(HANDLE handle, Type* t) argument
180 CloseHandle(HANDLE handle) argument
189 First(HANDLE handle, Type* t) argument
193 Next(HANDLE handle, Type* t) argument
197 CloseHandle(HANDLE handle) argument
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dwin32toolhelp_unittest.cc34 static Win32ToolhelpTest* AsFixture(HANDLE handle) { argument
35 return reinterpret_cast<Win32ToolhelpTest*>(handle);
38 static bool First(HANDLE handle, TestData* d) { argument
39 Win32ToolhelpTest* tst = Win32ToolhelpTest::AsFixture(handle);
54 static bool Next(HANDLE handle, TestData* d) { argument
55 Win32ToolhelpTest* tst = Win32ToolhelpTest::AsFixture(handle);
67 static bool Fail(HANDLE handle, TestData* d) { argument
68 Win32ToolhelpTest* tst = Win32ToolhelpTest::AsFixture(handle);
73 static bool CloseHandle(HANDLE handle) { argument
74 Win32ToolhelpTest* tst = Win32ToolhelpTest::AsFixture(handle);
136 First(HANDLE handle, Type* t) argument
140 Next(HANDLE handle, Type* t) argument
144 CloseHandle(HANDLE handle) argument
153 First(HANDLE handle, Type* t) argument
157 Next(HANDLE handle, Type* t) argument
163 CloseHandle(HANDLE handle) argument
172 First(HANDLE handle, Type* t) argument
176 Next(HANDLE handle, Type* t) argument
180 CloseHandle(HANDLE handle) argument
[all...]
/external/compiler-rt/test/lsan/TestCases/
H A Duse_tls_dynamic.cc19 void *handle = dlopen(path.c_str(), RTLD_LAZY); local
20 assert(handle != 0);
22 store_t StoreToTLS = (store_t)dlsym(handle, "StoreToTLS");
/external/deqp/framework/delibs/dethread/win32/
H A DdeThreadLocalWin32.c36 DWORD handle = TlsAlloc(); local
37 if (handle == TLS_OUT_OF_INDEXES)
39 return (deThreadLocal)handle;
/external/bluetooth/bluedroid/bta/ag/
H A Dbta_ag_rfc.c89 static void bta_ag_port_cback(UINT32 code, UINT16 port_handle, UINT16 handle) argument
95 if ((p_scb = bta_ag_scb_by_idx(handle)) != NULL)
97 /* ignore port events for port handles other than connected handle */
100 APPL_TRACE_DEBUG("ag_port_cback ignoring handle:%d conn_handle = %d other handle = %d",
101 port_handle, p_scb->conn_handle, handle);
108 p_buf->layer_specific = handle;
124 static void bta_ag_mgmt_cback(UINT32 code, UINT16 port_handle, UINT16 handle) argument
132 APPL_TRACE_DEBUG("ag_mgmt_cback : code = %d, port_handle = %d, handle = %d",
133 code, port_handle, handle);
198 bta_ag_data_cback(UINT16 port_handle, void *p_data, UINT16 len, UINT16 handle) argument
219 bta_ag_mgmt_cback_1(UINT32 code, UINT16 handle) argument
220 bta_ag_mgmt_cback_2(UINT32 code, UINT16 handle) argument
221 bta_ag_mgmt_cback_3(UINT32 code, UINT16 handle) argument
222 bta_ag_port_cback_1(UINT32 code, UINT16 handle) argument
223 bta_ag_port_cback_2(UINT32 code, UINT16 handle) argument
224 bta_ag_port_cback_3(UINT32 code, UINT16 handle) argument
260 bta_ag_setup_port(tBTA_AG_SCB *p_scb, UINT16 handle) argument
[all...]

Completed in 725 milliseconds

1234567891011>>