HomeSort by relevance Sort by last modified time
    Searched full:uuid (Results 76 - 100 of 1218) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/e2fsprogs/lib/blkid/
blkid.pc.in 9 Requires.private: uuid
  /external/e2fsprogs/lib/uuid/
configure.in 2 dnl Not used now, for the future when uuid is separated out into its
uuid_time.3.in 34 uuid_time \- extract the time at which the UUID was created
37 .B #include <uuid/uuid.h>
44 function extracts the time at which the supplied time-based UUID
46 was created. Note that the UUID creation time is only encoded within
52 The time at which the UUID was created, in seconds since January 1, 1970 GMT
55 The time at which the UUID was created, in seconds and microseconds since
67 .BR uuid (3),
uuid.3.in 32 .TH UUID 3 "@E2FSPROGS_MONTH@ @E2FSPROGS_YEAR@" "E2fsprogs version @E2FSPROGS_VERSION@"
34 uuid \- DCE compatible Universally Unique Identifier library
36 .B #include <uuid/uuid.h>
38 The UUID library is used to generate unique identifiers for objects
54 The UUID library is part of the e2fsprogs package and is available from
uuid_parse.3.in 34 uuid_parse \- convert an input UUID string into binary representation
37 .B #include <uuid/uuid.h>
44 function converts the UUID string given by
46 into the binary representation. The input UUID is a string of the form
51 Upon successfully parsing the input string, 0 is returned, and the UUID is
64 .BR uuid (3),
  /frameworks/av/media/libmediaplayerservice/
Crypto.cpp 71 * specified by uuid
82 void Crypto::findFactoryForScheme(const uint8_t uuid[16]) {
91 uuidVector.appendArray(uuid, sizeof(uuid));
94 if (loadLibraryForScheme(mUUIDToLibraryPathMap[index], uuid)) {
117 if (loadLibraryForScheme(pluginPath, uuid)) {
131 if (loadLibraryForScheme(pluginPath, uuid)) {
140 bool Crypto::loadLibraryForScheme(const String8 &path, const uint8_t uuid[16]) {
167 !mFactory->isCryptoSchemeSupported(uuid)) {
175 bool Crypto::isCryptoSchemeSupported(const uint8_t uuid[16])
    [all...]
Crypto.h 38 virtual bool isCryptoSchemeSupported(const uint8_t uuid[16]);
41 const uint8_t uuid[16], const void *data, size_t size);
70 void findFactoryForScheme(const uint8_t uuid[16]);
71 bool loadLibraryForScheme(const String8 &path, const uint8_t uuid[16]);
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ScanClient.java 19 import java.util.UUID;
28 UUID[] uuids;
33 this.uuids = new UUID[0];
36 ScanClient(int appIf, boolean isServer, UUID[] uuids) {
ContextMap.java 29 import java.util.UUID;
58 /** The UUID of the application */
59 UUID uuid; field in class:ContextMap.App
73 App(UUID uuid, T callback) {
74 this.uuid = uuid;
115 void add(UUID uuid, T callback)
    [all...]
  /external/e2fsprogs/misc/
uuidd.8.in 7 uuidd \- UUID generation daemon
45 daemon is used by the UUID library to generate
46 universally unique identifiers (UUIDs), especially time-based UUID's
48 numbers of threads trying to grab UUID's running on different CPU's.
63 UUID's.
77 request it to return a random-based UUID.
81 request it to return a time-based UUID.
  /external/chromium_org/device/bluetooth/
bluetooth_service_record_mac_unittest.mm 50 IOBluetoothSDPDataElement* GetServiceClassId(IOBluetoothSDPUUID* uuid) {
52 [IOBluetoothSDPDataElement withElementValue:uuid];
88 IOBluetoothSDPUUID* uuid, bool supports_rfcomm) {
91 if (uuid != nil) {
93 setObject:GetServiceClassId(uuid)
117 EXPECT_EQ(kExpectedRfcommUuid, record.uuid());
126 EXPECT_EQ(kExpectedSerialUuid, record.uuid());
135 EXPECT_EQ(kExpectedSerialUuid, record.uuid());
144 EXPECT_EQ(kExpectedRfcommUuid, record.uuid());
149 EXPECT_EQ("", record.uuid());
    [all...]
  /external/bluetooth/bluedroid/btif/include/
btif_sock_sdp.h 30 static inline BOOLEAN is_uuid_empty(const uint8_t* uuid)
33 return uuid == NULL || memcmp(uuid, empty_uuid, sizeof(empty_uuid)) == 0;
36 int add_rfc_sdp_rec(const char* name, const uint8_t* uuid, int scn);
39 int get_reserved_rfc_channel(const uint8_t* uuid);
btif_sock_rfc.h 32 bt_status_t btsock_rfc_listen(const char* name, const uint8_t* uuid, int channel,
34 bt_status_t btsock_rfc_connect(const bt_bdaddr_t *bd_addr, const uint8_t* uuid,
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
ProtectionSpecificHeader.java 17 import java.util.UUID;
21 protected static Map<UUID, Class<? extends ProtectionSpecificHeader>> uuidRegistry = new HashMap<UUID, Class<? extends ProtectionSpecificHeader>>();
25 uuidRegistry.put(UUID.fromString("9A04F079-9840-4286-AB92-E65BE0885F95"), PlayReadyHeader.class);
38 public static ProtectionSpecificHeader createFor(UUID systemId, ByteBuffer bufferWrapper) {
UuidBasedProtectionSystemSpecificHeaderBox.java 13 import java.util.UUID;
18 * aligned(8) class UuidBasedProtectionSystemSpecificHeaderBox extends FullBox(?uuid?,
31 UUID systemId;
36 super("uuid", USER_TYPE);
70 public UUID getSystemId() {
74 public void setSystemId(UUID systemId) {
  /cts/tests/tests/security/testeffect/
CTSTestEffect.cpp 26 {0xff93e360, 0x0c3c, 0x11e3, 0x8a97, {0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}}, // uuid
44 int CTSEffectsLib_Create(const effect_uuid_t *uuid,
48 if (pHandle == NULL || uuid == NULL) {
52 if (memcmp(uuid, &gCTSEffectsDescriptor.uuid, sizeof(effect_uuid_t)) != 0) {
77 int CTSEffectsLib_GetDescriptor(const effect_uuid_t *uuid,
80 if (pDescriptor == NULL || uuid == NULL){
84 if (memcmp(uuid, &gCTSEffectsDescriptor.uuid, sizeof(effect_uuid_t)) == 0) {
  /external/chromium_org/chrome/browser/storage_monitor/
image_capture_device_manager.mm 42 - (ImageCaptureDevice*)deviceForUUID:(const std::string&)uuid;
73 - (ImageCaptureDevice*) deviceForUUID:(const std::string&)uuid {
76 if (base::SysNSStringToUTF8(camera_id) == uuid) {
120 std::string uuid = base::SysNSStringToUTF8([device UUIDString]);
126 StorageInfo::MakeDeviceId(StorageInfo::MAC_IMAGE_CAPTURE, uuid));
147 const std::string& uuid,
150 [[device_browser_ deviceForUUID:uuid] retain]);
158 const std::string& uuid) {
161 return [manager deviceForUUID:uuid];
  /frameworks/base/media/jni/
android_media_MediaCrypto.cpp 46 const uint8_t uuid[16], const void *initData, size_t initSize) {
49 mCrypto = MakeCrypto(uuid, initData, initSize);
86 const uint8_t uuid[16], const void *initData, size_t initSize) {
93 status_t err = crypto->createPlugin(uuid, initData, initSize);
111 bool JCrypto::IsCryptoSchemeSupported(const uint8_t uuid[16]) {
118 return crypto->isCryptoSchemeSupported(uuid);
187 jbyte *uuid = env->GetByteArrayElements(uuidObj, &isCopy); local
198 env, thiz, (const uint8_t *)uuid, initData, initDataLength);
207 env->ReleaseByteArrayElements(uuidObj, uuid, 0);
208 uuid = NULL
239 jbyte *uuid = env->GetByteArrayElements(uuidObj, &isCopy); local
    [all...]
  /external/chromium_org/chrome/test/functional/tracing/
tab_tracker.py 5 import uuid namespace
41 """Create a tracked tab and return its uuid.
47 a uuid uniquely identifying that tab within this TabTracker
52 tab_uuid = uuid.uuid4()
60 tab_uuid: the uuid of the tab to close
70 tab_uuid: the uuid of the tab to close
  /external/chromium_org/chromeos/dbus/
fake_bluetooth_profile_manager_client.cc 37 const std::string& uuid,
41 VLOG(1) << "RegisterProfile: " << profile_path.value() << ": " << uuid;
50 ProfileMap::iterator piter = profile_map_.find(uuid);
55 profile_map_[uuid] = profile_path;
99 const std::string& uuid) {
100 ProfileMap::iterator iter = profile_map_.find(uuid);
  /hardware/ti/omap3/dspbridge/inc/
uuidutil.h 21 * This file contains the specification of UUID helper functions.
25 *! 09-Nov-2000 kc: Modified description of UUID utility functions.
26 *! 29-Sep-2000 kc: Appended "UUID_" prefix to UUID helper functions.
46 * pszUuid: Pointer to a buffer to receive a NULL-terminated UUID
55 * UUID string limit currently set at MAXUUIDLEN.
72 * We assume the string representation of a UUID has the following format:
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Registry/Public/
MobiCoreRegistry.h 109 * @param uuid Trustlet UUID.
113 mcResult_t mcRegistryStoreTrustletCon(const mcUuid_t *uuid, const mcSoTltCont_t *so);
116 * @param uuid Trustlet UUID.
120 mcResult_t mcRegistryReadTrustletCon(const mcUuid_t *uuid, mcSoTltCont_t *so);
123 * @param uuid Trustlet UUID.
126 mcResult_t mcRegistryCleanupTrustlet(const mcUuid_t *uuid);
136 * @param cid Service provider or UUID
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/
Utils.java 32 import java.util.UUID;
100 UUID uuid = pUuid.getUuid(); local
101 msb = uuid.getMostSignificantBits();
102 lsb = uuid.getLeastSignificantBits();
112 UUID uuid; local
115 uuid = uuids[i].getUuid();
116 msb = uuid.getMostSignificantBits();
117 lsb = uuid.getLeastSignificantBits()
127 UUID uuid; local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
UPnPServiceResponseListenerTest.java 74 String uuid = "uuid:6859dede-8574-59ab-9332-123456789011"; local
75 ALL_UPNP_SERVICES.add(new Argument(uuid));
76 ALL_UPNP_SERVICES.add(new Argument(uuid +
78 ALL_UPNP_SERVICES.add(new Argument(uuid +
80 ALL_UPNP_SERVICES.add(new Argument(uuid +
82 ALL_UPNP_SERVICES.add(new Argument(uuid +
85 UPNP_ROOT_DEVICE.add(new Argument(uuid +
  /external/bluetooth/bluedroid/btif/src/
btif_gatt_server.c 91 bt_uuid_t uuid; member in struct:__anon674
178 bta_to_btif_uuid(&app_uuid, &p_data->reg_oper.uuid);
217 bta_to_btif_uuid(&srvc_id.id.uuid, &p_data->create.uuid);
236 bt_uuid_t uuid; local
237 bta_to_btif_uuid(&uuid, &p_data->add_result.char_uuid);
242 &uuid,
250 bt_uuid_t uuid; local
251 bta_to_btif_uuid(&uuid, &p_data->add_result.char_uuid);
256 &uuid,
357 tBT_UUID uuid; local
413 tBT_UUID uuid; local
423 tBT_UUID uuid; local
    [all...]

Completed in 396 milliseconds

1 2 34 5 6 7 8 91011>>