HomeSort by relevance Sort by last modified time
    Searched refs:uuid (Results 26 - 50 of 583) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libeffects/data/
audio_effects.conf 50 # list of effects to load. Each effect element must contain a "library" and a "uuid" element.
53 # The name of the effect element is indicative, only the value of the "uuid" element
55 # The uuid is the implementation specific UUID as specified by the effect vendor. This is not the
56 # generic effect type UUID.
60 # uuid <effect uuid>
71 #uuid xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
77 #uuid yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy
84 #uuid zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzz
    [all...]
  /external/bluetooth/bluedroid/btif/include/
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,
btif_profile_queue.h 32 bt_status_t btif_queue_connect(uint16_t uuid, const bt_bdaddr_t *bda,
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);
  /external/chromium_org/webkit/browser/blob/
blob_storage_context.h 30 // and maintains a mapping from blob uuid to the data. The class is single
39 scoped_ptr<BlobDataHandle> GetBlobDataFromUUID(const std::string& uuid);
47 bool RegisterPublicBlobURL(const GURL& url, const std::string& uuid);
74 void StartBuildingBlob(const std::string& uuid);
75 void AppendBlobDataItem(const std::string& uuid,
77 void FinishBuildingBlob(const std::string& uuid, const std::string& type);
78 void CancelBuildingBlob(const std::string& uuid);
79 void IncrementBlobRefCount(const std::string& uuid);
80 void DecrementBlobRefCount(const std::string& uuid);
97 bool IsInUse(const std::string& uuid);
    [all...]
blob_storage_context.cc 61 const std::string& uuid) {
63 BlobMap::iterator found = blob_map_.find(uuid);
85 StartBuildingBlob(data->uuid());
89 AppendBlobDataItem(data->uuid(), *iter);
91 FinishBuildingBlob(data->uuid(), data->content_type());
92 scoped_ptr<BlobDataHandle> handle = GetBlobDataFromUUID(data->uuid());
93 DecrementBlobRefCount(data->uuid());
98 const GURL& blob_url, const std::string& uuid) {
100 DCHECK(IsInUse(uuid));
102 if (!IsInUse(uuid) || IsUrlRegistered(blob_url)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
HandleMap.java 24 import java.util.UUID;
39 UUID uuid = null; field in class:HandleMap.Entry
47 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) {
51 this.uuid = uuid;
56 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance,
61 this.uuid = uuid
    [all...]
  /device/samsung/manta/
audio_effects.conf 29 # list of effects to load. Each effect element must contain a "library" and a "uuid" element.
32 # The name of the effect element is indicative, only the value of the "uuid" element
34 # The uuid is the implementation specific UUID as specified by the effect vendor. This is not the
35 # generic effect type UUID.
39 # uuid <effect uuid>
47 uuid 8631f300-72e2-11df-b57e-0002a5d5c51b
51 uuid 1d4033c0-8557-11df-9f2d-0002a5d5c51b
55 uuid ce772f20-847d-11df-bb17-0002a5d5c51
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/blob/
BlobRegistry.h 51 static void registerBlobData(const String& uuid, PassOwnPtr<BlobData>);
52 static void addBlobDataRef(const String& uuid);
53 static void removeBlobDataRef(const String& uuid);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
UUIDConverter.java 20 import java.util.UUID;
23 * UUID from/to byte array.
26 public static byte[] convert(UUID uuid) {
28 long msb = uuid.getMostSignificantBits();
29 long lsb = uuid.getLeastSignificantBits();
43 public static UUID convert(byte[] uuidBytes) {
46 return new UUID(b.getLong(), b.getLong());
  /external/chromium_org/device/bluetooth/
bluetooth_profile.cc 45 void BluetoothProfile::Register(const std::string& uuid,
51 profile->Init(uuid, options, callback);
56 profile = new BluetoothProfileMac(uuid, options.name);
60 profile = new BluetoothProfileWin(uuid, options.name);
  /external/chromium_org/third_party/WebKit/public/platform/
WebBlobRegistry.h 47 virtual void registerBlobData(const blink::WebString& uuid, const blink::WebBlobData&) { }
48 virtual void addBlobDataRef(const blink::WebString& uuid) { }
49 virtual void removeBlobDataRef(const blink::WebString& uuid) { }
50 virtual void registerPublicBlobURL(const blink::WebURL&, const blink::WebString& uuid) { }
  /external/e2fsprogs/
depfix.sed 29 s;../[^ ]*lib/uuid/uuid.h[^ ]* *;;g
  /external/wpa_supplicant_8/src/utils/
uuid.h 2 * Universally Unique IDentifier (UUID)
16 int is_nil_uuid(const u8 *uuid);
  /hardware/libhardware/include/hardware/
bt_gatt_types.h 32 /** GATT ID adding instance id tracking to the UUID */
35 bt_uuid_t uuid; member in struct:__anon31022
  /developers/build/prebuilts/gradle/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 38 public static String lookup(String uuid, String defaultName) {
39 String name = attributes.get(uuid);
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 38 public static String lookup(String uuid, String defaultName) {
39 String name = attributes.get(uuid);
  /development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
SampleGattAttributes.java 38 public static String lookup(String uuid, String defaultName) {
39 String name = attributes.get(uuid);
  /external/chromium_org/chrome/browser/storage_monitor/
image_capture_device_manager.h 30 static ImageCaptureDevice* deviceForUUID(const std::string& uuid);
40 // ImageCapture UUID.
41 void EjectDevice(const std::string& uuid,
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattService.java 20 import java.util.UUID;
49 * The UUID of this service.
52 protected UUID mUuid;
83 * Whether the service uuid should be advertised.
91 * @param uuid The UUID for this service
96 public BluetoothGattService(UUID uuid, int serviceType) {
98 mUuid = uuid;
109 /*package*/ BluetoothGattService(BluetoothDevice device, UUID uuid
    [all...]
BluetoothGattDescriptor.java 19 import java.util.UUID;
88 * The UUID of this descriptor.
91 protected UUID mUuid;
121 * @param uuid The UUID for this descriptor
124 public BluetoothGattDescriptor(UUID uuid, int permissions) {
125 initDescriptor(null, uuid, 0, permissions);
133 * @param uuid The UUID for this descripto
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3dapi/
galliumcom.idl 32 [object, local, uuid("481c9372-795f-4630-bd5b-1f46d33cc28b")]
40 [object, local, uuid("2c0f7e72-d9fe-4e7b-9fee-d476695ad5d9")]
71 [object, local, uuid("61934787-7aea-412c-8c72-8afe6a33d622")]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/
galliumcom.idl 32 [object, local, uuid("481c9372-795f-4630-bd5b-1f46d33cc28b")]
40 [object, local, uuid("2c0f7e72-d9fe-4e7b-9fee-d476695ad5d9")]
71 [object, local, uuid("61934787-7aea-412c-8c72-8afe6a33d622")]
  /frameworks/base/core/java/android/os/
ParcelUuid.java 19 import java.util.UUID;
22 * This class is a Parcelable wrapper around {@link UUID} which is an
28 private final UUID mUuid;
32 * given {@link UUID}.
34 * @param uuid UUID
36 public ParcelUuid(UUID uuid) {
37 mUuid = uuid;
41 * Creates a new ParcelUuid from a string representation of {@link UUID}
    [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 +

Completed in 733 milliseconds

12 3 4 5 6 7 8 91011>>