HomeSort by relevance Sort by last modified time
    Searched refs:port_handle (Results 1 - 17 of 17) sorted by null

  /external/bluetooth/bluedroid/bta/ag/
bta_ag_rfc.c 43 void bta_ag_port_cback_1(UINT32 code, UINT16 port_handle);
44 void bta_ag_port_cback_2(UINT32 code, UINT16 port_handle);
45 void bta_ag_port_cback_3(UINT32 code, UINT16 port_handle);
47 void bta_ag_mgmt_cback_1(UINT32 code, UINT16 port_handle);
48 void bta_ag_mgmt_cback_2(UINT32 code, UINT16 port_handle);
49 void bta_ag_mgmt_cback_3(UINT32 code, UINT16 port_handle);
51 int bta_ag_data_cback_1(UINT16 port_handle, void *p_data, UINT16 len);
52 int bta_ag_data_cback_2(UINT16 port_handle, void *p_data, UINT16 len);
53 int bta_ag_data_cback_3(UINT16 port_handle, void *p_data, UINT16 len);
89 static void bta_ag_port_cback(UINT32 code, UINT16 port_handle, UINT16 handle
    [all...]
bta_ag_act.c 567 if (PORT_SUCCESS != (status=PORT_CheckConnection(p_data->rfc.port_handle, dev_addr, &lcid)))
609 APPL_TRACE_DEBUG ("bta_ag_rfc_acp_open: i = %d serv_handle = %d port_handle = %d",
610 i, p_scb->serv_handle[i], p_data->rfc.port_handle);
612 if (p_scb->serv_handle[i] == p_data->rfc.port_handle)
615 p_scb->conn_handle = p_data->rfc.port_handle;
bta_ag_int.h 207 UINT16 port_handle; member in struct:__anon5043
  /external/bluetooth/bluedroid/bta/hf_client/
bta_hf_client_rfc.c 44 static void bta_hf_client_port_cback(UINT32 code, UINT16 port_handle)
50 if (port_handle != bta_hf_client_cb.scb.conn_handle)
53 port_handle, bta_hf_client_cb.scb.conn_handle);
74 static void bta_hf_client_mgmt_cback(UINT32 code, UINT16 port_handle)
79 APPL_TRACE_DEBUG("bta_hf_client_mgmt_cback : code = %d, port_handle = %d, conn_handle = %d, serv_handle = %d",
80 code, port_handle, bta_hf_client_cb.scb.conn_handle, bta_hf_client_cb.scb.serv_handle);
83 if ((code != PORT_SUCCESS) && (port_handle != bta_hf_client_cb.scb.conn_handle))
85 APPL_TRACE_DEBUG("bta_hf_client_mgmt_cback ignoring handle:%d", port_handle);
91 if ((bta_hf_client_cb.scb.conn_handle && (port_handle == bta_hf_client_cb.scb.conn_handle)) || /* outgoing connection */
92 (port_handle == bta_hf_client_cb.scb.serv_handle)) /* incoming connection *
    [all...]
bta_hf_client_act.c 274 APPL_TRACE_DEBUG ("bta_hf_client_rfc_acp_open: serv_handle = %d rfc.port_handle = %d",
275 bta_hf_client_cb.scb.serv_handle, p_data->rfc.port_handle);
278 if (PORT_SUCCESS != (status=PORT_CheckConnection(p_data->rfc.port_handle, dev_addr, &lcid)))
303 bta_hf_client_cb.scb.conn_handle = p_data->rfc.port_handle;
bta_hf_client_int.h 111 UINT16 port_handle; member in struct:__anon5230
  /external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
port_monitor.h 36 BOOL WINAPI Monitor2StartDocPort(HANDLE port_handle,
49 BOOL WINAPI Monitor2EndDocPort(HANDLE port_handle);
51 BOOL WINAPI Monitor2ClosePort(HANDLE port_handle);
port_monitor_unittest.cc 186 HANDLE port_handle = NULL; local
233 EXPECT_TRUE(monitor2->pfnOpenPort(monitor_handle, NULL, &port_handle));
234 EXPECT_TRUE(port_handle != NULL);
242 port_handle, const_cast<wchar_t*>(L""), 0, 0, NULL));
243 EXPECT_FALSE(monitor2->pfnWritePort(port_handle,
248 EXPECT_FALSE(monitor2->pfnReadPort(port_handle,
253 EXPECT_FALSE(monitor2->pfnEndDocPort(port_handle));
258 port_handle, const_cast<wchar_t*>(L""), 0, 0, NULL));
259 EXPECT_TRUE(monitor2->pfnWritePort(port_handle,
264 EXPECT_FALSE(monitor2->pfnReadPort(port_handle,
    [all...]
spooler_win.h 28 BOOL (WINAPI *pfnStartDocPort)(HANDLE port_handle,
41 BOOL (WINAPI *pfnEndDocPort)(HANDLE port_handle);
43 BOOL (WINAPI *pfnClosePort)(HANDLE port_handle);
port_monitor.cc 391 BOOL WINAPI Monitor2StartDocPort(HANDLE port_handle,
397 if (port_handle == NULL) {
398 LOG(ERROR) << "port_handle should not be NULL.";
411 PortData* port_data = reinterpret_cast<PortData*>(port_handle);
439 BOOL WINAPI Monitor2WritePort(HANDLE port_handle,
443 PortData* port_data = reinterpret_cast<PortData*>(port_handle);
464 BOOL WINAPI Monitor2EndDocPort(HANDLE port_handle) {
469 PortData* port_data = reinterpret_cast<PortData*>(port_handle);
512 BOOL WINAPI Monitor2ClosePort(HANDLE port_handle) {
513 if (port_handle == NULL)
    [all...]
  /external/bluetooth/bluedroid/stack/include/
port_api.h 99 typedef int (tPORT_DATA_CALLBACK) (UINT16 port_handle, void *p_data, UINT16 len);
104 typedef int (tPORT_DATA_CO_CALLBACK) (UINT16 port_handle, UINT8* p_buf, UINT16 len, int type);
106 typedef void (tPORT_CALLBACK) (UINT32 code, UINT16 port_handle);
260 RFC_API extern int PORT_SetEventCallback (UINT16 port_handle,
272 int PORT_ClearKeepHandleFlag (UINT16 port_handle);
286 RFC_API extern int PORT_SetDataCallback (UINT16 port_handle,
289 RFC_API extern int PORT_SetDataCOCallback (UINT16 port_handle, tPORT_DATA_CO_CALLBACK *p_port_cb);
301 RFC_API extern int PORT_SetEventMask (UINT16 port_handle, UINT32 mask);
obx_api.h 702 OBX_API extern tOBX_STATUS OBX_GetPortHandle(tOBX_HANDLE handle, UINT16 *port_handle);
    [all...]
  /external/bluetooth/bluedroid/bta/jv/
bta_jv_act.c 186 tBTA_JV_RFC_CB * bta_jv_alloc_rfc_cb(UINT16 port_handle, tBTA_JV_PCB **pp_pcb)
203 p_cb->rfc_hdl[0] = port_handle;
204 APPL_TRACE_DEBUG( "bta_jv_alloc_rfc_cb port_handle:%d handle:0x%2x",
205 port_handle, p_cb->handle);
207 p_pcb = &bta_jv_cb.port_cb[port_handle - 1];
209 p_pcb->port_handle = port_handle;
217 APPL_TRACE_ERROR( "bta_jv_alloc_rfc_cb: port_handle:%d, ctrl block exceeds "
218 "limit:%d", port_handle, BTA_JV_MAX_RFC_CONN);
232 tBTA_JV_PCB * bta_jv_rfc_port_to_pcb(UINT16 port_handle)
    [all...]
bta_jv_int.h 209 UINT16 port_handle; /* port handle */ member in struct:__anon5560
445 tBTA_JV_PCB port_cb[MAX_RFC_PORTS]; /* index of this array is the port_handle, */
bta_jv_api.c     [all...]
  /external/bluetooth/bluedroid/stack/rfcomm/
port_api.c 291 int PORT_SetEventCallback (UINT16 port_handle, tPORT_CALLBACK *p_port_cb)
296 if ((port_handle == 0) || (port_handle > MAX_RFC_PORTS))
301 p_port = &rfc_cb.port.port[port_handle - 1];
308 RFCOMM_TRACE_API ("PORT_SetEventCallback() handle:%d", port_handle);
324 int PORT_ClearKeepHandleFlag (UINT16 port_handle)
329 if ((port_handle == 0) || (port_handle > MAX_RFC_PORTS))
334 p_port = &rfc_cb.port.port[port_handle - 1];
352 int PORT_SetDataCallback (UINT16 port_handle, tPORT_DATA_CALLBACK *p_port_cb
    [all...]
  /external/chromium_org/content/renderer/
render_font_warmup_win.cc 69 NTSTATUS WINAPI NtALpcConnectPortPatch(HANDLE* port_handle,

Completed in 2555 milliseconds