Home
last modified time | relevance | path

Searched refs:descriptor (Results 1 – 25 of 26) sorted by relevance

12

/system/connectivity/shill/test-scripts/
Dcrypto_util_pb2.py19 from google.protobuf import descriptor
26 DESCRIPTOR = descriptor.FileDescriptor(
31 _RETURNCODE = descriptor.EnumDescriptor(
37 descriptor.EnumValueDescriptor(
41 descriptor.EnumValueDescriptor(
45 descriptor.EnumValueDescriptor(
49 descriptor.EnumValueDescriptor(
53 descriptor.EnumValueDescriptor(
73 _ENCRYPTDATAMESSAGE = descriptor.Descriptor(
80 descriptor.FieldDescriptor(
[all …]
/system/bt/bta/hh/
Dbta_hh_api.c332 size_t len = sizeof(tBTA_HH_MAINT_DEV) + dscp_info.descriptor.dl_len; in BTA_HhAddDev()
345 if ( dscp_info.descriptor.dl_len != 0 && dscp_info.descriptor.dsc_list) { in BTA_HhAddDev()
346 p_buf->dscp_info.descriptor.dl_len = dscp_info.descriptor.dl_len; in BTA_HhAddDev()
347 p_buf->dscp_info.descriptor.dsc_list = (UINT8 *)(p_buf + 1); in BTA_HhAddDev()
348 memcpy(p_buf->dscp_info.descriptor.dsc_list, in BTA_HhAddDev()
349 dscp_info.descriptor.dsc_list, in BTA_HhAddDev()
350 dscp_info.descriptor.dl_len); in BTA_HhAddDev()
352 p_buf->dscp_info.descriptor.dsc_list = NULL; in BTA_HhAddDev()
353 p_buf->dscp_info.descriptor.dl_len = 0; in BTA_HhAddDev()
Dbta_hh_utils.c138 osi_free_and_reset((void **)&p_cb->dscp_info.descriptor.dsc_list); in bta_hh_clean_up_kdev()
205 osi_free_and_reset((void **)&p_cb->dscp_info.descriptor.dsc_list); in bta_hh_add_device_to_list()
208 p_cb->dscp_info.descriptor.dsc_list = in bta_hh_add_device_to_list()
210 p_cb->dscp_info.descriptor.dl_len = p_dscp_info->dl_len; in bta_hh_add_device_to_list()
211 memcpy(p_cb->dscp_info.descriptor.dsc_list, p_dscp_info->dsc_list, in bta_hh_add_device_to_list()
466 osi_free_and_reset((void **)&bta_hh_cb.kdev[xx].dscp_info.descriptor.dsc_list); in bta_hh_cleanup_disable()
Dbta_hh_le.c1199 p_cb->dscp_info.descriptor.dsc_list = NULL; in bta_hh_clear_service_cache()
1622 p_srvc->descriptor.dl_len = p_data->p_value->len; in bta_hh_le_save_rpt_map()
1623 p_srvc->descriptor.dsc_list = p_dev_cb->hid_srvc.rpt_map; in bta_hh_le_save_rpt_map()
2421 p_cb->dscp_info.descriptor.dl_len = p_cb->hid_srvc.descriptor.dl_len; in bta_hh_le_get_dscp_act()
2422 p_cb->dscp_info.descriptor.dsc_list = p_cb->hid_srvc.descriptor.dsc_list; in bta_hh_le_get_dscp_act()
2489 &p_dev_info->dscp_info.descriptor, in bta_hh_le_add_device()
Dbta_hh_int.h221 tBTA_HH_DEV_DESCR descriptor; member
Dbta_hh_act.c1021 &p_dev_info->dscp_info.descriptor, in bta_hh_maint_dev_act()
/system/bt/btif/src/
Dbtif_hh.c528 dest->descriptor.dl_len = 0; in btif_hh_copy_hid_info()
529 if (src->descriptor.dl_len > 0) { in btif_hh_copy_hid_info()
530 dest->descriptor.dsc_list = (UINT8 *)osi_malloc(src->descriptor.dl_len); in btif_hh_copy_hid_info()
532 memcpy(dest->descriptor.dsc_list, src->descriptor.dsc_list, src->descriptor.dl_len); in btif_hh_copy_hid_info()
533 dest->descriptor.dl_len = src->descriptor.dl_len; in btif_hh_copy_hid_info()
901 len = p_data->dscp_info.descriptor.dl_len; in btif_hh_upstreams_evt()
932 len, p_data->dscp_info.descriptor.dsc_list); in btif_hh_upstreams_evt()
950 len, p_data->dscp_info.descriptor.dsc_list); in btif_hh_upstreams_evt()
956 if (dscp_info.descriptor.dl_len >0 && dscp_info.descriptor.dsc_list != NULL) in btif_hh_upstreams_evt()
958 osi_free_and_reset((void **)&dscp_info.descriptor.dsc_list); in btif_hh_upstreams_evt()
[all …]
Dbtif_storage.c1368 dscp_info.descriptor.dl_len = (uint16_t)len; in btif_storage_load_bonded_hid_info()
1369 dscp_info.descriptor.dsc_list = (uint8_t*)alloca(len); in btif_storage_load_bonded_hid_info()
1370 … btif_config_get_bin(name, "HidDescriptor", (uint8_t *)dscp_info.descriptor.dsc_list, &len); in btif_storage_load_bonded_hid_info()
/system/bt/service/doc/
DIBluetoothGattClientCallback.txt56 * Called for each descriptor that was discovered on the remote device. The
57 * service and characteristic that this descriptor belongs to can be obtained
100 * code in case of an error. |descriptor_id| refers to the descriptor this
102 * descriptor value that was read from the remote device. This argument
111 * code in case of an error. |descriptor_id| refers to the descriptor this
DIBluetoothGattServerCallback.txt59 * address |device_address| for the descriptor with identifier
60 * |descriptor_id|. |offset| is the index of the descriptor value that
64 * |request_id| and the appropriate descriptor value.
67 * GATT_ERROR_INVALID_OFFSET. If |is_long| is true but this descriptor is
97 * address |device_address| for the descriptor with identifier
100 * |request_id|. |offset| is the index of the descriptor value that the
DIBluetoothGattClient.txt100 * Initiate a read request for the remote descriptor with identifier
104 * device. If the read request fails due to descriptor permissions,
106 * descriptor's permission requirements. If that operation fails, then the
115 * Initiate a write request for the remote descriptor with identifier
127 * based on the descriptor's permission requirements. If that operation fails,
DIBluetoothGattServer.txt68 * Adds a characteristic descriptor entry to a previously started service
71 * characteristic that can own this descriptor. Returns the uniquely assigned
72 * descriptor identifier in |out_id| in the case of success.
/system/core/fingerprintd/
Dfingerprintd.cpp42 android::FingerprintDaemonProxy::descriptor, proxy); in main()
DIFingerprintDaemon.cpp40 IFingerprintDaemon::descriptor("android.hardware.fingerprint.IFingerprintDaemon"); member in android::IFingerprintDaemon
44 return IFingerprintDaemon::descriptor; in getInterfaceDescriptor()
DIFingerprintDaemon.h71 static const android::String16 descriptor; variable
/system/core/gatekeeperd/
DIGateKeeperService.cpp24 const android::String16 IGateKeeperService::descriptor("android.service.gatekeeper.IGateKeeperServi… member in android::IGateKeeperService
26 return IGateKeeperService::descriptor; in getInterfaceDescriptor()
DIGateKeeperService.h45 static const android::String16 descriptor; variable
/system/bt/bta/gatt/
Dbta_gattc_cache.c311 tBTA_GATTC_DESCRIPTOR *descriptor = in bta_gattc_add_attr_to_cache() local
314 descriptor->handle = handle; in bta_gattc_add_attr_to_cache()
315 memcpy(&descriptor->uuid, p_uuid, sizeof(tBT_UUID)); in bta_gattc_add_attr_to_cache()
320 osi_free(descriptor); in bta_gattc_add_attr_to_cache()
326 descriptor->characteristic = char_node; in bta_gattc_add_attr_to_cache()
327 list_append(char_node->descriptors, descriptor); in bta_gattc_add_attr_to_cache()
/system/core/libziparchive/
Dzip_archive.cc488 const DataDescriptor* descriptor = reinterpret_cast<const DataDescriptor*>(ddBuf + offset); in UpdateEntryFromDataDescriptor() local
490 entry->crc32 = descriptor->crc32; in UpdateEntryFromDataDescriptor()
491 entry->compressed_length = descriptor->compressed_size; in UpdateEntryFromDataDescriptor()
492 entry->uncompressed_length = descriptor->uncompressed_size; in UpdateEntryFromDataDescriptor()
/system/tools/aidl/
Dgenerate_java_binder.cpp65 Field* descriptor = in StubClass() local
68 descriptor->value = "\"" + interfaceType->JavaType() + "\""; in StubClass()
69 this->elements.push_back(descriptor); in StubClass()
/system/bt/bta/include/
Dbta_hh_api.h211 tBTA_HH_DEV_DESCR descriptor; member
/system/sepolicy/
Dkernel.te58 # Kernel thread "loop0" reads a vold supplied file descriptor.
Dapp.te135 # Send heap dumps to system_server via an already open file descriptor
202 # and the file descriptor is passed to the right Activity via binder.
Dsystem_server.te551 # file descriptor.
/system/tools/aidl/tests/java_app/src/android/aidl/tests/
DTestServiceClient.java612 FileDescriptor descriptor = fileOutputStream.getFD(); in checkFileDescriptorPassing() local
613 FileDescriptor journeyed = service.RepeatFileDescriptor(descriptor); in checkFileDescriptorPassing()

12