HomeSort by relevance Sort by last modified time
    Searched defs:uuid (Results 51 - 75 of 347) sorted by null

1 23 4 5 6 7 8 91011>>

  /system/bt/bta/include/
bta_sdp_api.h 34 using bluetooth::Uuid;
60 bluetooth::Uuid uuid; member in struct:__anon1636
101 * specific profile uuid.
109 const bluetooth::Uuid& uuid);
  /system/bt/bta/sdp/
bta_sdp_act.cc 45 static const Uuid UUID_OBEX_OBJECT_PUSH = Uuid::From16Bit(0x1105);
46 static const Uuid UUID_PBAP_PSE = Uuid::From16Bit(0x112F);
47 static const Uuid UUID_MAP_MAS = Uuid::From16Bit(0x1132);
48 static const Uuid UUID_MAP_MNS = Uuid::From16Bit(0x1133);
49 static const Uuid UUID_SAP = Uuid::From16Bit(0x112D)
437 const Uuid& uuid = p_data->get_search.uuid; local
    [all...]
bta_sdp_int.h 62 bluetooth::Uuid uuid; member in struct:__anon1671
  /system/bt/btif/src/
btif_profile_queue.cc 48 ConnectNode(const RawAddress& address, uint16_t uuid,
50 : address_(address), uuid_(uuid), busy_(false), connect_cb_(connect_cb) {}
53 return base::StringPrintf("address=%s UUID=%04X busy=%s",
59 uint16_t uuid() const { return uuid_; } function in class:ConnectNode
93 static void queue_int_add(uint16_t uuid, const RawAddress& bda,
98 ConnectNode param(bda, uuid, connect_cb);
100 if (node.uuid() == param.uuid() && node.address() == param.address()) {
125 static void queue_int_cleanup(uint16_t uuid) {
126 LOG_INFO(LOG_TAG, "%s: UUID=%04X", __func__, uuid)
    [all...]
  /system/bt/types/bluetooth/
uuid.cc 19 #include "uuid.h"
27 static_assert(sizeof(Uuid) == 16, "Uuid must be 16 bytes long!");
29 using UUID128Bit = Uuid::UUID128Bit;
31 const Uuid Uuid::kEmpty = Uuid::From128BitBE(UUID128Bit{{0x00}});
34 constexpr Uuid kBase = Uuid::From128BitBE(
39 size_t Uuid::GetShortestRepresentationSize() const
150 Uuid uuid; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
dm-log-userspace.h 45 char uuid[DM_UUID_LEN]; member in struct:dm_ulog_request
  /cts/tests/tests/bluetooth/src/android/bluetooth/cts/
AdvertiseDataTest.java 88 ParcelUuid uuid = ParcelUuid.fromString("0000110A-0000-1000-8000-00805F9B34FB"); local
92 .addServiceData(uuid, serviceData).build();
98 TestUtils.assertArrayEquals(new byte[0], dataFromParcel.getServiceData().get(uuid));
104 ParcelUuid uuid = ParcelUuid.fromString("0000110A-0000-1000-8000-00805F9B34FB"); local
109 .addServiceUuid(uuid).addServiceUuid(uuid2).build();
115 assertTrue(dataFromParcel.getServiceUuids().contains(uuid));
122 ParcelUuid uuid = ParcelUuid.fromString("0000110A-0000-1000-8000-00805F9B34FB"); local
130 .addServiceUuid(uuid).addServiceUuid(uuid2)
145 ParcelUuid uuid = ParcelUuid.fromString("0000110A-0000-1000-8000-00805F9B34FB"); local
150 .addServiceData(uuid, serviceData).build()
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/io/
io_storage.h 13 #include <uuid.h>
50 /* UUID specification - used to refer to data accessed using UUIDs (i.e. FIP
53 const uuid_t uuid; member in struct:io_uuid_spec
  /device/linaro/bootloader/arm-trusted-firmware/include/tools_share/
firmware_image_package.h 11 #include <uuid.h>
74 uuid_t uuid; member in struct:fip_toc_entry
  /external/autotest/site_utils/sponge_lib/
acts_job_info.py 250 def uuid(self): member in class:ACTSRecord
251 """The test tracker uuid of the test case."""
  /external/clang/utils/VtableTest/
gen.cc 28 int uuid = 0; variable
176 g(fn); g("(char *t) { mix(\"vfn this offset\", (char *)this - t); mix(\"vfn uuid\", "); g(++uuid);
248 g(fn); g("(char *t) { mix(\"vfn this offset\", (char *)this - t); mix(\"vfn uuid\", "); g(++uuid);
283 g(" else mix(\"no dyncast\", "); g(++uuid); gl(");");
292 g(" mix(\"no fields\", "); g(++uuid); gl(");");
300 g(" mix(\"no funcs\", "); g(++uuid); gl(");");
  /external/kernel-headers/original/uapi/linux/
dm-log-userspace.h 63 * The UUID contained in the dm_ulog_request structure is the reference that
83 * The UUID contained in the dm_ulog_request structure is all that is
102 * The UUID contained in the dm_ulog_request structure is all that is
121 * The UUID contained in the dm_ulog_request structure is all that is
140 * The UUID contained in the dm_ulog_request structure is all that is
410 * identifier (uuid) are used to tie a request to a specific
412 * just the 'luid', but a cluster-aware log must use the 'uuid' and
413 * the 'luid'. The uuid is what is required for node to node
416 * same 'uuid'. (Think "live" and "inactive" device-mapper tables.)
419 char uuid[DM_UUID_LEN] member in struct:dm_ulog_request
    [all...]
  /external/llvm/lib/Support/
LockFileManager.cpp 32 #include <uuid/uuid.h>
73 // On OS X, use the more stable hardware UUID instead of hostname.
75 uuid_t uuid; local
76 if (gethostuuid(uuid, &wait) != 0)
80 uuid_unparse(uuid, UUIDStr);
  /external/syslinux/com32/gplinclude/dmi/
dmi_system.h 33 char uuid[SYSTEM_UUID_SIZE]; member in struct:__anon36980
  /external/syslinux/core/fs/pxe/
dhcp_option.c 13 uint8_t uuid[16]; variable
110 memcpy(uuid, data+1, 16);
  /external/syslinux/gpxe/src/include/gpxe/
smbios.h 109 /** UUID */
110 uint8_t uuid[16]; member in struct:smbios_system_information
  /frameworks/av/media/libeffects/factory/
EffectsConfigLoader.c 230 // This will find the library and UUID tags of the sub effect pointed by the
237 effect_uuid_t uuid; local
254 if (stringToUuid(node->value, &uuid) != 0) {
255 ALOGW("addSubEffect() invalid uuid %s", node->value);
259 if (l->desc->get_descriptor(&uuid, d) != 0) {
261 uuidToString(&uuid, s, 40);
308 effect_uuid_t uuid; local
328 if (stringToUuid(node->value, &uuid) != 0) {
329 ALOGW("loadEffect() invalid uuid %s", node->value);
334 if (findEffect(NULL, &uuid, &tmp, NULL) == 0)
    [all...]
  /frameworks/base/media/java/android/media/soundtrigger/
SoundTriggerDetectionService.java 40 import java.util.UUID;
57 * {@link #operationFinished(UUID, int)}. If this does not happen in
59 * {@link #onStopOperation(UUID, Bundle, int)} is called and the service is unbound.
74 * Client indexed by model uuid. This is needed for the {@link #operationFinished(UUID, int)}
78 private final ArrayMap<UUID, ISoundTriggerDetectionServiceClient> mClients =
92 private void setClient(@NonNull UUID uuid, @Nullable Bundle params,
94 if (DEBUG) Log.i(LOG_TAG, uuid + ": handle setClient");
97 mClients.put(uuid, client)
220 UUID uuid = puuid.getUuid(); local
232 UUID uuid = puuid.getUuid(); local
246 UUID uuid = puuid.getUuid(); local
260 UUID uuid = puuid.getUuid(); local
273 UUID uuid = puuid.getUuid(); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
HardwareConfig.java 77 * uuid - unique identifier for this hardware.
81 public String uuid; field in class:HardwareConfig
129 split[1].trim(), /* uuid */
141 split[1].trim(), /* uuid */
143 split[3].trim() /* modem-uuid */
154 uuid = id;
169 uuid = id;
179 builder.append("{ uuid=" + uuid);
189 builder.append("{ uuid=" + uuid)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/data/
PlaceholderItem.java 28 import java.util.UUID;
59 String uuid = UUID.randomUUID().toString(); local
60 builder.scheme(SIMPLE_VIEW_URI_SCHEME).appendPath(uuid);
65 uuid,
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
IntentUtilities.java 91 * Add the account UUID parameter.
129 * Retrieve the account UUID, or null if the UUID param is not found.
136 String uuid = uri.getQueryParameter(ACCOUNT_UUID_PARAM); local
137 return TextUtils.isEmpty(uuid) ? null : uuid;
  /packages/apps/Settings/tests/unit/src/com/android/settings/print/
PrintJobSettingsActivityTest.java 55 import java.util.UUID;
94 UUID uuid = UUID.randomUUID(); local
103 callback.onLayoutFinished(new PrintDocumentInfo.Builder(uuid.toString()).build(),
122 PrintJob printJob = pm.print(uuid.toString(), adapter, null);
137 + uuid.toString())), 5000);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
DiskReceiver.java 147 final String uuid = info.getFsUuid(); local
149 if (info.getType() != VolumeInfo.TYPE_PUBLIC || TextUtils.isEmpty(uuid)) {
152 final VolumeRecord record = mStorageManager.findRecordByUuid(uuid);
  /packages/services/BuiltInPrintService/src/com/android/bips/jni/
LocalPrinterCapabilities.java 38 public String uuid; field in class:LocalPrinterCapabilities
115 + " uuid=" + uuid
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
dm-log-userspace.h 61 * The UUID contained in the dm_ulog_request structure is the reference that
81 * The UUID contained in the dm_ulog_request structure is all that is
100 * The UUID contained in the dm_ulog_request structure is all that is
119 * The UUID contained in the dm_ulog_request structure is all that is
138 * The UUID contained in the dm_ulog_request structure is all that is
394 * identifier (uuid) are used to tie a request to a specific
396 * just the 'luid', but a cluster-aware log must use the 'uuid' and
397 * the 'luid'. The uuid is what is required for node to node
400 * same 'uuid'. (Think "live" and "inactive" device-mapper tables.)
403 char uuid[DM_UUID_LEN] member in struct:dm_ulog_request
    [all...]

Completed in 773 milliseconds

1 23 4 5 6 7 8 91011>>