/external/chromium_org/mojo/shell/ |
out_of_process_dynamic_service_runner.cc | 33 ScopedMessagePipeHandle service_handle, 38 service_handle_ = service_handle.Pass(); 50 service_handle.release().value())));
|
dynamic_service_runner.h | 32 ScopedMessagePipeHandle service_handle,
|
in_process_dynamic_service_runner.h | 29 ScopedMessagePipeHandle service_handle,
|
out_of_process_dynamic_service_runner.h | 29 ScopedMessagePipeHandle service_handle,
|
in_process_dynamic_service_runner.cc | 62 ScopedMessagePipeHandle service_handle, 67 service_handle_ = service_handle.Pass();
|
dynamic_application_loader_unittest.cc | 38 ScopedMessagePipeHandle service_handle,
|
/external/bluetooth/bluedroid/stack/srvc/ |
srvc_dis_int.h | 47 UINT16 service_handle; member in struct:__anon6350
|
srvc_dis.c | 93 if (handle >= dis_cb.service_handle && handle <= dis_cb.max_handle) 363 dis_cb.service_handle = GATTS_CreateService (srvc_eng_cb.gatt_if , &uuid, 0, DIS_MAX_ATTR_NUM, TRUE); 365 if (dis_cb.service_handle == 0) 370 dis_cb.max_handle = dis_cb.service_handle + DIS_MAX_ATTR_NUM; 377 p_db_attr->handle = GATTS_AddCharacteristic(dis_cb.service_handle, &uuid, GATT_PERM_READ, GATT_CHAR_PROP_BIT_READ); 386 status = GATTS_StartService (srvc_eng_cb.gatt_if, dis_cb.service_handle, GATT_TRANSPORT_LE_BR_EDR);
|
/external/bluetooth/bluedroid/btif/src/ |
btif_gatt_server.c | 575 static bt_status_t btif_gatts_add_included_service(int server_if, int service_handle, 581 btif_cb.srvc_handle = (uint16_t) service_handle; 587 static bt_status_t btif_gatts_add_characteristic(int server_if, int service_handle, 594 btif_cb.srvc_handle = (uint16_t) service_handle; 602 static bt_status_t btif_gatts_add_descriptor(int server_if, int service_handle, bt_uuid_t *uuid, 608 btif_cb.srvc_handle = (uint16_t) service_handle; 615 static bt_status_t btif_gatts_start_service(int server_if, int service_handle, int transport) 620 btif_cb.srvc_handle = (uint16_t) service_handle; 626 static bt_status_t btif_gatts_stop_service(int server_if, int service_handle) 631 btif_cb.srvc_handle = (uint16_t) service_handle; [all...] |
/external/chromium_org/content/renderer/ |
render_font_warmup_win.cc | 52 BOOL WINAPI CloseServiceHandlePatch(SC_HANDLE service_handle) { 53 if (service_handle != reinterpret_cast<SC_HANDLE>(0xdeadbabe) && 54 service_handle != reinterpret_cast<SC_HANDLE>(0xdeadbeef))
|
/external/chromium_org/mojo/application_manager/ |
application_manager.h | 74 ScopedMessagePipeHandle service_handle = local 76 ptr->Bind(service_handle.Pass());
|
/external/bluetooth/bluedroid/stack/gap/ |
gap_ble.c | 385 UINT16 service_handle; local 398 service_handle = GATTS_CreateService (gap_cb.gatt_if, &uuid, 0, GAP_MAX_ATTR_NUM, TRUE); 400 GAP_TRACE_EVENT ("gap_attr_db_init service_handle = %d", service_handle); 406 p_db_attr->handle = GATTS_AddCharacteristic(service_handle, &uuid, GATT_PERM_READ, GATT_CHAR_PROP_BIT_READ); 412 p_db_attr->handle = GATTS_AddCharacteristic(service_handle, 426 p_db_attr->handle = GATTS_AddCharacteristic(service_handle, 436 status = GATTS_StartService(gap_cb.gatt_if, service_handle, GAP_TRANSPORT_SUPPORTED ); 439 gap_cb.gatt_if, service_handle, status);
|
/external/bluetooth/bluedroid/stack/gatt/ |
gatt_attr.c | 269 UINT16 service_handle = 0; local 280 service_handle = GATTS_CreateService (gatt_cb.gatt_if , &uuid, 0, GATTP_MAX_ATTR_NUM, TRUE); 286 gatt_cb.handle_of_h_r = GATTS_AddCharacteristic(service_handle, &uuid, 0, GATT_CHAR_PROP_BIT_INDICATE); 293 status = GATTS_StartService (gatt_cb.gatt_if, service_handle, GATTP_TRANSPORT_SUPPORTED );
|
gatt_api.c | 270 ** Parameter service_handle : To which service this included service is added to. 277 UINT16 GATTS_AddIncludeService (UINT16 service_handle, UINT16 include_svc_handle) 282 if ((p_decl = gatt_find_hdl_buffer_by_handle(service_handle)) == NULL) 307 ** Parameter service_handle : To which service this included service is added to. 315 UINT16 GATTS_AddCharacteristic (UINT16 service_handle, tBT_UUID *p_char_uuid, 320 if ((p_decl = gatt_find_hdl_buffer_by_handle(service_handle)) == NULL) 347 ** Parameter service_handle : To which service this characteristic descriptor 357 UINT16 GATTS_AddCharDescriptor (UINT16 service_handle, 363 if ((p_decl = gatt_find_hdl_buffer_by_handle(service_handle)) == NULL) 464 tGATT_STATUS GATTS_StartService (tGATT_IF gatt_if, UINT16 service_handle, [all...] |
/external/bluetooth/bluedroid/stack/include/ |
gatt_api.h | 747 ** Parameter service_handle : To which service this included service is added to. 754 GATT_API extern UINT16 GATTS_AddIncludeService (UINT16 service_handle, 767 ** Parameter service_handle : To which service this included service is added to. 776 GATT_API extern UINT16 GATTS_AddCharacteristic (UINT16 service_handle, tBT_UUID *char_uuid, 788 ** Parameter service_handle : To which service this characteristic descriptor 798 GATT_API extern UINT16 GATTS_AddCharDescriptor (UINT16 service_handle, tGATT_PERM perm, 830 GATT_API extern tGATT_STATUS GATTS_StartService (tGATT_IF gatt_if, UINT16 service_handle, 840 ** Parameter service_handle : this is the start handle of a service 845 GATT_API extern void GATTS_StopService (UINT16 service_handle); [all...] |