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

1 2 34 5 6 7 8 91011>>

  /frameworks/av/include/media/
ICrypto.h 34 virtual bool isCryptoSchemeSupported(const uint8_t uuid[16]) = 0;
37 const uint8_t uuid[16], const void *data, size_t size) = 0;
  /frameworks/native/include/media/hardware/
CryptoAPI.h 32 virtual bool isCryptoSchemeSupported(const uint8_t uuid[16]) const = 0;
35 const uint8_t uuid[16], const void *data, size_t size,
  /external/bluetooth/bluedroid/btif/src/
btif_profile_queue.c 46 uint16_t uuid; member in struct:connect_node_tag
135 bt_status_t btif_queue_connect(uint16_t uuid, const bt_bdaddr_t *bda,
141 node.uuid = uuid;
btif_sock_sdp.c 454 static int add_rfc_sdp_by_uuid(const char* name, const uint8_t* uuid, int scn)
466 To do this we will check the UUID for the requested service and mimic the SDP records of bluez
472 int final_scn = get_reserved_rfc_channel(uuid);
477 if (IS_UUID(UUID_OBEX_OBJECT_PUSH,uuid))
481 else if (IS_UUID(UUID_PBAP_PSE,uuid))
485 else if (IS_UUID(UUID_MAPS_MAS,uuid))
489 else if (IS_UUID(UUID_SPP, uuid))
495 handle = add_sdp_by_uuid(name, uuid, final_scn);
512 int get_reserved_rfc_channel (const uint8_t* uuid)
514 if (IS_UUID(UUID_PBAP_PSE,uuid))
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
blob_native_handler.cc 14 // Expects a single Blob argument. Returns the Blob's UUID.
19 v8::String::NewFromUtf8(args.GetIsolate(), blob.uuid().utf8().data()));
  /external/chromium_org/device/bluetooth/
bluetooth_profile_mac.h 37 BluetoothProfileMac(const std::string& uuid, const std::string& name);
bluetooth_profile_win.h 28 BluetoothProfileWin(const std::string& uuid, const std::string& name);
  /external/chromium_org/media/video/capture/win/
sink_filter_win.h 29 class __declspec(uuid("88cdbbdc-a73b-4afa-acbf-15d5e2ce12c3"))
  /external/wpa_supplicant_8/src/wps/
wps_er.h 19 u8 uuid[WPS_UUID_LEN]; member in struct:wps_er_sta
42 u8 uuid[WPS_UUID_LEN]; member in struct:wps_er_ap
72 u8 uuid[WPS_UUID_LEN]; member in struct:wps_er_ap_settings
102 void wps_er_ap_add(struct wps_er *er, const u8 *uuid, struct in_addr *addr,
  /external/chromium_org/chrome/browser/media/
encrypted_media_message_filter_android.cc 79 if (!MediaDrmBridge::IsCryptoSchemeSupported(request.uuid, ""))
83 response->uuid = request.uuid;
  /external/chromium_org/chrome/common/extensions/permissions/
bluetooth_permission_data.cc 16 const char* kUuidKey = "uuid";
25 const std::string& uuid) : uuid_(uuid) {
37 specific_param.uuid);
  /frameworks/av/media/libeffects/proxy/
EffectProxy.h 33 int EffectProxyCreate(const effect_uuid_t *uuid,
38 int EffectProxyGetDescriptor(const effect_uuid_t *uuid,
76 effect_uuid_t uuid; // UUID of the Proxy member in struct:android::EffectContext
  /frameworks/av/media/libmedia/
ICrypto.cpp 51 virtual bool isCryptoSchemeSupported(const uint8_t uuid[16]) {
54 data.write(uuid, 16);
61 const uint8_t uuid[16], const void *opaqueData, size_t opaqueSize) {
64 data.write(uuid, 16);
174 uint8_t uuid[16]; local
175 data.read(uuid, sizeof(uuid));
176 reply->writeInt32(isCryptoSchemeSupported(uuid));
185 uint8_t uuid[16]; local
186 data.read(uuid, sizeof(uuid))
    [all...]
  /frameworks/base/media/jni/
android_media_MediaDrm.h 40 static bool IsCryptoSchemeSupported(const uint8_t uuid[16], const String8 &mimeType);
42 JDrm(JNIEnv *env, jobject thiz, const uint8_t uuid[16]);
62 static sp<IDrm> MakeDrm(const uint8_t uuid[16]);
  /external/e2fsprogs/lib/uuid/
tst_uuid.c 2 * tst_uuid.c --- test program from the UUID library
38 #define UUID MYUUID
44 #include <uuid/uuid.h>
46 static int test_uuid(const char * uuid, int isValid)
52 parsedOk = uuid_parse(uuid, uuidBits) == 0;
54 printf("%s is %s", uuid, validStr[isValid]);
83 printf("UUID generate = %s\n", str);
84 printf("UUID: ");
90 printf("UUID type = %d, UUID variant = %d\n", type, variant)
    [all...]
  /hardware/libhardware/include/hardware/
bt_gatt_server.h 64 bt_uuid_t *uuid, int srvc_handle, int char_handle);
68 bt_uuid_t *uuid, int srvc_handle, int descr_handle);
126 bt_status_t (*register_server)( bt_uuid_t *uuid );
146 int service_handle, bt_uuid_t *uuid,
151 bt_uuid_t *uuid, int permissions);
  /frameworks/base/media/java/android/media/
MediaDrm.java 21 import java.util.UUID;
65 * {@link android.media.MediaCodec} objects. It accesses the DRM-scheme-identifying UUID,
66 * typically from metadata in the content, and uses this UUID to construct an instance
76 * Once the app has a sessionId, it can construct a MediaCrypto object from the UUID and
106 * Query if the given scheme identified by its UUID is supported on
108 * @param uuid The UUID of the crypto scheme.
110 public static final boolean isCryptoSchemeSupported(UUID uuid) {
111 return isCryptoSchemeSupportedNative(getByteArrayFromUUID(uuid), null)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
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/qemu/android/
user-config.c 33 uint64_t uuid; member in struct:AUserConfig
42 #define KEY_UUID "uuid"
124 uc->uuid = (uint64_t) iniFile_getInt64(ini, KEY_UUID, 0LL);
126 DD(" found %s = %lld", KEY_UUID, uc->uuid);
137 /* Generate a 64-bit UUID if necessary. We simply take the
144 uc->uuid = (uint64_t)tm.tv_sec*1000 + tm.tv_usec/1000;
146 DD(" Generated UUID = %lld", uc->uuid);
156 return uconfig->uuid;
196 KEY_UUID, uconfig->uuid );
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wps_supplicant.h 52 const char *uuid, const char *pin);
53 int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid);
54 int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid,
56 int wpas_wps_er_set_config(struct wpa_supplicant *wpa_s, const char *uuid,
58 int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid,
61 int ndef, const char *uuid);
73 int ndef, int cr, const char *uuid);
  /external/qemu/
arch_init.c 654 int qemu_uuid_parse(const char *str, uint8_t *uuid)
662 ret = sscanf(str, UUID_FMT, &uuid[0], &uuid[1], &uuid[2], &uuid[3],
663 &uuid[4], &uuid[5], &uuid[6], &uuid[7], &uuid[8], &uuid[9]
    [all...]
  /external/bluetooth/bluedroid/bta/gatt/
bta_gattc_cache.c 78 ((p_cur_srvc->service_uuid.id.uuid.len == 2) ? "uuid16" : "uuid128"),
79 p_cur_srvc->service_uuid.id.uuid.uu.uuid16,
87 APPL_TRACE_ERROR6("\t Attr[0x%04x] handle[%d] uuid[0x%04x] inst[%d] type[%s] prop[0x%1x]",
117 APPL_TRACE_ERROR5("\t rec[%d] uuid[0x%04x] s_handle[%d] e_handle[%d] is_primary[%d]",
118 i + 1, pp->uuid.uu.uuid16, pp->s_handle, pp->e_handle, pp->is_primary);
211 static UINT8 bta_gattc_get_srvc_inst_id(tBTA_GATTC_SERV *p_srvc_cb, tBT_UUID uuid)
222 if (bta_gattc_uuid_compare(&p_srvc_rec->uuid, &uuid, TRUE))
318 memcpy(&p_new_srvc->service_uuid.id.uuid, p_uuid, sizeof(tBT_UUID));
580 &p_rec->uuid,
890 tSDP_UUID uuid; local
1561 tBT_UUID uuid; local
    [all...]
  /external/bluetooth/bluedroid/stack/srvc/
srvc_battery.c 194 tBT_UUID uuid = {LEN_UUID_16, {UUID_SERVCLASS_BATTERY}}; local
209 &uuid,
227 uuid.uu.uuid16 = GATT_UUID_BATTERY_LEVEL;
233 &uuid,
244 uuid.uu.uuid16 = GATT_UUID_CHAR_CLIENT_CONFIG;
247 &uuid);
256 uuid.uu.uuid16 = GATT_UUID_CHAR_PRESENT_FORMAT;
259 &uuid))
269 uuid.uu.uuid16 = GATT_UUID_RPT_REF_DESCR;
272 &uuid))
    [all...]
  /external/chromium_org/content/renderer/media/android/
proxy_media_keys.cc 42 std::vector<uint8> uuid = GetUUID(key_system);
43 DCHECK(!uuid.empty());
44 manager_->InitializeCDM(media_keys_id_, this, uuid, frame_url);
  /external/chromium_org/remoting/tools/winext/manifest/
rdp.h 20 struct __declspec(uuid("336d5562-efa8-482e-8cb3-c5c0fc7a7db6")) IMsTscAxEvents;
21 struct __declspec(uuid("92b4a539-7115-4b7c-a5a9-e5d9efc2780a")) IMsRdpClient;
22 struct __declspec(uuid("8c11efae-92c3-11d1-bc1e-00c04fa31489")) IMsTscAx;
23 struct __declspec(uuid("327bb5cd-834e-4400-aef2-b30e15e5d682")) IMsTscAx_Redist;
24 struct __declspec(uuid("c9d65442-a0f9-45b2-8f73-d61d2db8cbb6")) IMsTscSecuredSettings;
25 struct __declspec(uuid("809945cc-4b3b-4a92-a6b0-dbf9b5f2ef2d")) IMsTscAdvancedSettings;
26 struct __declspec(uuid("209d0eb9-6254-47b1-9033-a98dae55bb27")) IMsTscDebug;
27 struct __declspec(uuid("3c65b4ab-12b3-465b-acd4-b8dad3bff9e2")) IMsRdpClientAdvancedSettings;
28 struct __declspec(uuid("605befcf-39c1-45cc-a811-068fb7be346d")) IMsRdpClientSecuredSettings;
29 struct __declspec(uuid("c1e6743a-41c1-4a74-832a-0dd06c1c7a0e")) IMsTscNonScriptable
    [all...]

Completed in 1172 milliseconds

1 2 34 5 6 7 8 91011>>