Home
last modified time | relevance | path

Searched refs:uuid (Results 1 - 25 of 218) sorted by relevance

123456789

/third_party/python/Lib/test/
H A Dtest_uuid.py15 py_uuid = import_helper.import_fresh_module('uuid', blocked=['_uuid'])
16 c_uuid = import_helper.import_fresh_module('uuid', fresh=['_uuid'])
33 uuid = None variable in BaseTestUUID
54 'urn:uuid:00000000-0000-0000-0000-000000000000',
55 0, 0, self.uuid.RESERVED_NCS, None),
63 'urn:uuid:00010203-0405-0607-0809-0a0b0c0d0e0f',
64 0x607040500010203, 0x809, self.uuid.RESERVED_NCS, None),
72 'urn:uuid:02d9e6d5-9467-382e-8f9b-9300a64ac3cd',
73 0x82e946702d9e6d5, 0xf9b, self.uuid.RFC_4122, 3),
81 'urn:uuid
679 uuid = py_uuid global() variable in TestUUIDWithoutExtModule
683 uuid = c_uuid global() variable in TestUUIDWithExtModule
876 uuid = py_uuid global() variable in TestInternalsWithoutExtModule
880 uuid = c_uuid global() variable in TestInternalsWithExtModule
[all...]
/third_party/ffmpeg/libavutil/tests/
H A Duuid.c22 #include "libavutil/uuid.h"
28 static const char *UUID_1_URN = "urn:uuid:6021b21e-894e-43ff-8317-1ca891c1c49b";
42 AVUUID uuid; in main() local
48 if (av_uuid_parse(UUID_1, uuid)) in main()
51 if (!av_uuid_equal(uuid, UUID_1_BYTES)) in main()
56 av_uuid_nil(uuid); in main()
58 if (!av_uuid_equal(uuid, UUID_NIL)) in main()
75 if (av_uuid_parse(UUID_1_UC, uuid)) in main()
78 if (!av_uuid_equal(uuid, UUID_1_BYTES)) in main()
83 if (av_uuid_parse(UUID_1_MIXED, uuid)) in main()
[all...]
/third_party/python/Modules/
H A D_uuidmodule.c11 #include <uuid.h>
14 #include <uuid/uuid.h>
27 uuid_t uuid; in Py_UNUSED() local
31 res = uuid_generate_time_safe(uuid); in Py_UNUSED()
32 return Py_BuildValue("y#i", (const char *) uuid, sizeof(uuid), res); in Py_UNUSED()
35 uuid_create(&uuid, &status); in Py_UNUSED()
37 unsigned char buf[sizeof(uuid)]; in Py_UNUSED()
38 uuid_enc_be(buf, &uuid); in Py_UNUSED()
55 UUID uuid; Py_UNUSED() local
[all...]
/third_party/node/test/parallel/
H A Dtest-crypto-randomuuid.js17 function testMatch(uuid) {
19 uuid,
28 const uuid = randomUUID();
29 assert(!last.has(uuid));
30 last.add(uuid);
31 assert.strictEqual(typeof uuid, 'string');
32 assert.strictEqual(uuid.length, 36);
33 testMatch(uuid);
37 Buffer.from(uuid.substr(14, 2), 'hex')[0] & 0x40, 0x40);
41 Buffer.from(uuid
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Duuid.c13 #include "uuid.h"
65 int is_nil_uuid(const u8 *uuid) in is_nil_uuid() argument
69 if (uuid[i]) in is_nil_uuid()
75 int uuid_random(u8 *uuid) in uuid_random() argument
83 if (os_get_random(uuid, UUID_LEN) < 0 || in uuid_random()
84 hmac_sha256(uuid, UUID_LEN, (const u8 *) &t, sizeof(t), hash) < 0) in uuid_random()
87 os_memcpy(uuid, hash, UUID_LEN); in uuid_random()
90 uuid[6] = (4 << 4) | (uuid[6] & 0x0f); in uuid_random()
93 uuid[ in uuid_random()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Duuid.c13 #include "uuid.h"
65 int is_nil_uuid(const u8 *uuid) in is_nil_uuid() argument
69 if (uuid[i]) in is_nil_uuid()
75 int uuid_random(u8 *uuid) in uuid_random() argument
83 if (os_get_random(uuid, UUID_LEN) < 0 || in uuid_random()
84 hmac_sha256(uuid, UUID_LEN, (const u8 *) &t, sizeof(t), hash) < 0) in uuid_random()
87 os_memcpy(uuid, hash, UUID_LEN); in uuid_random()
90 uuid[6] = (4 << 4) | (uuid[6] & 0x0f); in uuid_random()
93 uuid[ in uuid_random()
[all...]
/third_party/libuv/src/unix/
H A Drandom-sysctl-linux.c46 char uuid[16]; in uv__random_sysctl() local
59 args.oldval = uuid; in uv__random_sysctl()
61 n = sizeof(uuid); in uv__random_sysctl()
80 if (n != sizeof(uuid)) in uv__random_sysctl()
83 /* uuid[] is now a type 4 UUID. Bytes 6 and 8 (counting from zero) contain in uv__random_sysctl()
87 uuid[6] = uuid[14]; in uv__random_sysctl()
88 uuid[8] = uuid[15]; in uv__random_sysctl()
94 memcpy(p, uuid, in uv__random_sysctl()
[all...]
/third_party/node/deps/uv/src/unix/
H A Drandom-sysctl-linux.c46 char uuid[16]; in uv__random_sysctl() local
59 args.oldval = uuid; in uv__random_sysctl()
61 n = sizeof(uuid); in uv__random_sysctl()
80 if (n != sizeof(uuid)) in uv__random_sysctl()
83 /* uuid[] is now a type 4 UUID. Bytes 6 and 8 (counting from zero) contain in uv__random_sysctl()
87 uuid[6] = uuid[14]; in uv__random_sysctl()
88 uuid[8] = uuid[15]; in uv__random_sysctl()
94 memcpy(p, uuid, in uv__random_sysctl()
[all...]
/third_party/node/test/fixtures/wpt/resources/
H A Dchannel.sub.js38 * just have a simple map of {uuid: WebSocket}. The socket can be
41 * For writing there can be many channels for each uuid. Those can
43 * of {uuid: [WebSocket, count]}. Count is incremented when a
44 * channel is opened with a given uuid, and decremented when its
54 async getOrCreate(type, uuid, onmessage=null) {
58 let url = `${protocol}://{{host}}:${port}/msg_channel?uuid=${uuid}&direction=${type}`;
68 if (this.readSockets.has(uuid)) {
73 socket.addEventListener("close", () => this.readSockets.delete(uuid));
74 this.readSockets.set(uuid, socke
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dwps_er.c13 #include "uuid.h"
44 ev->uuid = sta->uuid; in wps_er_sta_event()
60 const u8 *uuid) in wps_er_sta_get()
66 (uuid == NULL || in wps_er_sta_get()
67 os_memcmp(uuid, sta->uuid, WPS_UUID_LEN) == 0)) in wps_er_sta_get()
100 struct in_addr *addr, const u8 *uuid, in wps_er_ap_get()
106 (uuid == NULL || in wps_er_ap_get()
107 os_memcmp(uuid, a in wps_er_ap_get()
59 wps_er_sta_get(struct wps_er_ap *ap, const u8 *addr, const u8 *uuid) wps_er_sta_get() argument
99 wps_er_ap_get(struct wps_er *er, struct in_addr *addr, const u8 *uuid, const u8 *mac_addr) wps_er_ap_get() argument
278 wps_er_ap_get_settings(struct wps_er *er, const u8 *uuid) wps_er_ap_get_settings() argument
637 wps_er_ap_add(struct wps_er *er, const u8 *uuid, struct in_addr *addr, const char *location, int max_age) wps_er_ap_add() argument
1560 wps_er_pbc(struct wps_er *er, const u8 *uuid, const u8 *addr) wps_er_pbc() argument
1911 wps_er_learn(struct wps_er *er, const u8 *uuid, const u8 *addr, const u8 *pin, size_t pin_len) wps_er_learn() argument
1944 wps_er_set_config(struct wps_er *er, const u8 *uuid, const u8 *addr, const struct wps_credential *cred) wps_er_set_config() argument
1995 wps_er_config(struct wps_er *er, const u8 *uuid, const u8 *addr, const u8 *pin, size_t pin_len, const struct wps_credential *cred) wps_er_config() argument
2060 wps_er_nfc_config_token(struct wps_er *er, const u8 *uuid, const u8 *addr) wps_er_nfc_config_token() argument
2081 wps_er_nfc_handover_sel(struct wps_er *er, struct wps_context *wps, const u8 *uuid, const u8 *addr, struct wpabuf *pubkey) wps_er_nfc_handover_sel() argument
[all...]
H A Dwps.h246 const u8 *uuid,
565 const u8 *uuid; member
581 const u8 *uuid; member
595 const u8 *uuid; member
600 const u8 *uuid; member
654 * uuid - Own UUID
656 u8 uuid[16]; member
847 const u8 *uuid, const u8 *pin, size_t pin_len,
849 int wps_registrar_invalidate_pin(struct wps_registrar *reg, const u8 *uuid);
851 int wps_registrar_unlock_pin(struct wps_registrar *reg, const u8 *uuid);
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dwps_er.c13 #include "uuid.h"
44 ev->uuid = sta->uuid; in wps_er_sta_event()
60 const u8 *uuid) in wps_er_sta_get()
66 (uuid == NULL || in wps_er_sta_get()
67 os_memcmp(uuid, sta->uuid, WPS_UUID_LEN) == 0)) in wps_er_sta_get()
100 struct in_addr *addr, const u8 *uuid, in wps_er_ap_get()
106 (uuid == NULL || in wps_er_ap_get()
107 os_memcmp(uuid, a in wps_er_ap_get()
59 wps_er_sta_get(struct wps_er_ap *ap, const u8 *addr, const u8 *uuid) wps_er_sta_get() argument
99 wps_er_ap_get(struct wps_er *er, struct in_addr *addr, const u8 *uuid, const u8 *mac_addr) wps_er_ap_get() argument
278 wps_er_ap_get_settings(struct wps_er *er, const u8 *uuid) wps_er_ap_get_settings() argument
637 wps_er_ap_add(struct wps_er *er, const u8 *uuid, struct in_addr *addr, const char *location, int max_age) wps_er_ap_add() argument
1560 wps_er_pbc(struct wps_er *er, const u8 *uuid, const u8 *addr) wps_er_pbc() argument
1911 wps_er_learn(struct wps_er *er, const u8 *uuid, const u8 *addr, const u8 *pin, size_t pin_len) wps_er_learn() argument
1944 wps_er_set_config(struct wps_er *er, const u8 *uuid, const u8 *addr, const struct wps_credential *cred) wps_er_set_config() argument
1995 wps_er_config(struct wps_er *er, const u8 *uuid, const u8 *addr, const u8 *pin, size_t pin_len, const struct wps_credential *cred) wps_er_config() argument
2060 wps_er_nfc_config_token(struct wps_er *er, const u8 *uuid, const u8 *addr) wps_er_nfc_config_token() argument
2081 wps_er_nfc_handover_sel(struct wps_er *er, struct wps_context *wps, const u8 *uuid, const u8 *addr, struct wpabuf *pubkey) wps_er_nfc_handover_sel() argument
[all...]
H A Dwps.h247 const u8 *uuid,
569 const u8 *uuid; member
585 const u8 *uuid; member
599 const u8 *uuid; member
604 const u8 *uuid; member
658 * uuid - Own UUID
660 u8 uuid[16]; member
855 const u8 *uuid, const u8 *pin, size_t pin_len,
857 int wps_registrar_invalidate_pin(struct wps_registrar *reg, const u8 *uuid);
859 int wps_registrar_unlock_pin(struct wps_registrar *reg, const u8 *uuid);
[all...]
/third_party/ffmpeg/libavformat/tests/
H A Dimf.c64 "<Id>urn:uuid:8713c020-2489-45f5-a9f7-87be539e20b5</Id>"
70 " <Id>urn:uuid:8e097bb0-cff7-4969-a692-bad47bfb528f</Id>"
76 "<Id>urn:uuid:81fed4e5-9722-400a-b9d1-7f2bd21df4b6</Id>"
79 "<Id>urn:uuid:16327185-9205-47ef-a17b-ee28df251db7</Id>"
80 "<TrackId>urn:uuid:461f5424-8f6e-48a9-a385-5eda46fda381</TrackId>"
83 "<Id>urn:uuid:ea3d0f23-55d6-4e03-86ec-cfe0666f0e6a</Id>"
93 "<Id>urn:uuid:6ae100b0-92d1-41be-9321-85e0933dfc42</Id>"
94 "<TrackId>urn:uuid:e8ef9653-565c-479c-8039-82d4547973c5</TrackId>"
97 "<Id>urn:uuid:7d418acb-07a3-4e57-984c-b8ea2f7de4ec</Id>"
99 "<SourceEncoding>urn:uuid
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dwps_supplicant.h53 const char *uuid, const char *pin);
54 int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid);
55 int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid,
57 int wpas_wps_er_set_config(struct wpa_supplicant *wpa_s, const char *uuid,
59 int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid,
62 int ndef, const char *uuid);
78 int ndef, int cr, const char *uuid);
H A Dwps_supplicant.c13 #include "uuid.h"
740 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_ap_add()
763 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_ap_remove()
774 uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_enrollee_add()
798 uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_enrollee_remove()
820 uuid_bin2str(ap_settings->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_ap_settings()
823 "uuid=%s ssid=%s auth_type=0x%04x encr_type=0x%04x " in wpa_supplicant_wps_event_er_ap_settings()
836 uuid_bin2str(ev->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_set_sel_reg()
840 "uuid=%s state=START sel_reg=%d dev_passwd_id=%u " in wpa_supplicant_wps_event_er_set_sel_reg()
847 "uuid in wpa_supplicant_wps_event_er_set_sel_reg()
1436 char uuid[40], txt[400]; wpas_wps_pin_needed_cb() local
1953 wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const u8 *addr, const char *uuid, const char *pin) wpas_wps_er_add_pin() argument
1975 wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid) wpas_wps_er_pbc() argument
1990 wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid, const char *pin) wpas_wps_er_learn() argument
2042 wpas_wps_er_set_config(struct wpa_supplicant *wpa_s, const char *uuid, int id) wpas_wps_er_set_config() argument
2069 wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid, const char *pin, struct wps_new_ap_settings *settings) wpas_wps_er_config() argument
2128 wpas_wps_er_nfc_config_token(struct wpa_supplicant *wpa_s, int ndef, const char *uuid) wpas_wps_er_nfc_config_token() argument
2524 wpas_wps_er_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef, const char *uuid) wpas_wps_er_nfc_handover_sel() argument
2579 wpas_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef, int cr, const char *uuid) wpas_wps_nfc_handover_sel() argument
2878 const u8 *uuid; wpas_wps_update_ap_info_bss() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dwps_supplicant.h53 const char *uuid, const char *pin);
54 int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid);
55 int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid,
57 int wpas_wps_er_set_config(struct wpa_supplicant *wpa_s, const char *uuid,
59 int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid,
62 int ndef, const char *uuid);
79 int ndef, int cr, const char *uuid);
H A Dwps_supplicant.c13 #include "uuid.h"
763 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_ap_add()
786 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_ap_remove()
797 uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_enrollee_add()
821 uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_enrollee_remove()
843 uuid_bin2str(ap_settings->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_ap_settings()
846 "uuid=%s ssid=%s auth_type=0x%04x encr_type=0x%04x " in wpa_supplicant_wps_event_er_ap_settings()
859 uuid_bin2str(ev->uuid, uuid_str, sizeof(uuid_str)); in wpa_supplicant_wps_event_er_set_sel_reg()
863 "uuid=%s state=START sel_reg=%d dev_passwd_id=%u " in wpa_supplicant_wps_event_er_set_sel_reg()
870 "uuid in wpa_supplicant_wps_event_er_set_sel_reg()
1474 char uuid[40], txt[400]; wpas_wps_pin_needed_cb() local
2012 wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const u8 *addr, const char *uuid, const char *pin) wpas_wps_er_add_pin() argument
2034 wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid) wpas_wps_er_pbc() argument
2049 wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid, const char *pin) wpas_wps_er_learn() argument
2101 wpas_wps_er_set_config(struct wpa_supplicant *wpa_s, const char *uuid, int id) wpas_wps_er_set_config() argument
2128 wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid, const char *pin, struct wps_new_ap_settings *settings) wpas_wps_er_config() argument
2187 wpas_wps_er_nfc_config_token(struct wpa_supplicant *wpa_s, int ndef, const char *uuid) wpas_wps_er_nfc_config_token() argument
2593 wpas_wps_er_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef, const char *uuid) wpas_wps_er_nfc_handover_sel() argument
2648 wpas_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef, int cr, const char *uuid) wpas_wps_nfc_handover_sel() argument
2948 const u8 *uuid; wpas_wps_update_ap_info_bss() local
[all...]
/third_party/ffmpeg/libavformat/
H A Dimf_cpl.c73 int ff_imf_xml_read_uuid(xmlNodePtr element, AVUUID uuid) in ff_imf_xml_read_uuid() argument
81 ret = av_uuid_urn_parse(element_text, uuid); in ff_imf_xml_read_uuid()
361 AVUUID uuid; in push_marker_sequence() local
373 if (ff_imf_xml_read_uuid(track_id_elem, uuid)) { in push_marker_sequence()
380 AV_UUID_ARG(uuid)); in push_marker_sequence()
388 av_uuid_copy(cpl->main_markers_track->base.id_uuid, uuid); in push_marker_sequence()
390 } else if (!av_uuid_equal(cpl->main_markers_track->base.id_uuid, uuid)) { in push_marker_sequence()
448 AVUUID uuid; in push_main_audio_sequence() local
461 if ((ret = ff_imf_xml_read_uuid(track_id_elem, uuid))) { in push_main_audio_sequence()
468 AV_UUID_ARG(uuid)); in push_main_audio_sequence()
534 AVUUID uuid; push_main_image_2d_sequence() local
[all...]
/third_party/mesa3d/src/freedreno/common/
H A Dfreedreno_uuid.c38 fd_get_driver_uuid(void *uuid) in fd_get_driver_uuid() argument
57 memcpy(uuid, sha1, UUID_SIZE); in fd_get_driver_uuid()
61 fd_get_device_uuid(void *uuid, const struct fd_dev_id *id) in fd_get_device_uuid() argument
93 memcpy(uuid, sha1, UUID_SIZE); in fd_get_device_uuid()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dwps_hostapd.c13 #include "utils/uuid.h"
177 char uuid[40], txt[400]; in hostapd_wps_pin_needed_cb() local
180 if (uuid_bin2str(uuid_e, uuid, sizeof(uuid))) in hostapd_wps_pin_needed_cb()
182 wpa_printf(MSG_DEBUG, "WPS: PIN needed for E-UUID %s", anonymize_common(uuid)); in hostapd_wps_pin_needed_cb()
185 uuid, MAC2STR(dev->mac_addr), dev->device_name, in hostapd_wps_pin_needed_cb()
202 t.sec, uuid, MAC2STR(dev->mac_addr), dev->device_name, in hostapd_wps_pin_needed_cb()
234 char uuid[40]; in hostapd_wps_reg_success_cb() local
236 if (uuid_bin2str(uuid_e, uuid, sizeof(uuid))) in hostapd_wps_reg_success_cb()
259 char uuid[40]; hostapd_wps_enrollee_seen_cb() local
974 const u8 **uuid = ctx; get_uuid_cb() local
994 const u8 *uuid; get_own_uuid() local
1105 const u8 *uuid; hostapd_init_wps() local
1516 const u8 *uuid; global() member
1540 hostapd_wps_add_pin(struct hostapd_data *hapd, const u8 *addr, const char *uuid, const char *pin, int timeout) hostapd_wps_add_pin() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dwps_hostapd.c13 #include "utils/uuid.h"
175 char uuid[40], txt[400]; in hostapd_wps_pin_needed_cb() local
178 if (uuid_bin2str(uuid_e, uuid, sizeof(uuid))) in hostapd_wps_pin_needed_cb()
180 wpa_printf(MSG_DEBUG, "WPS: PIN needed for E-UUID %s", uuid); in hostapd_wps_pin_needed_cb()
183 uuid, MAC2STR(dev->mac_addr), dev->device_name, in hostapd_wps_pin_needed_cb()
200 t.sec, uuid, MAC2STR(dev->mac_addr), dev->device_name, in hostapd_wps_pin_needed_cb()
232 char uuid[40]; in hostapd_wps_reg_success_cb() local
234 if (uuid_bin2str(uuid_e, uuid, sizeof(uuid))) in hostapd_wps_reg_success_cb()
257 char uuid[40]; hostapd_wps_enrollee_seen_cb() local
920 const u8 **uuid = ctx; get_uuid_cb() local
940 const u8 *uuid; get_own_uuid() local
1036 const u8 *uuid; hostapd_init_wps() local
1332 const u8 *uuid; global() member
1356 hostapd_wps_add_pin(struct hostapd_data *hapd, const u8 *addr, const char *uuid, const char *pin, int timeout) hostapd_wps_add_pin() argument
[all...]
/third_party/mesa3d/src/intel/common/
H A Dintel_uuid.c29 intel_uuid_compute_device_id(uint8_t *uuid, in intel_uuid_compute_device_id() argument
60 memcpy(uuid, sha1, size); in intel_uuid_compute_device_id()
64 intel_uuid_compute_driver_id(uint8_t *uuid, in intel_uuid_compute_driver_id() argument
85 memcpy(uuid, sha1, size); in intel_uuid_compute_driver_id()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/
H A Dwps-nfc.py87 def wpas_get_er_config_token(uuid):
91 ret = wpas.request("WPS_ER_NFC_CONFIG_TOKEN NDEF " + uuid)
116 def wpas_get_handover_sel(uuid):
120 if uuid is None:
123 res = wpas.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR " + uuid).rstrip()
176 data = wpas_get_handover_sel(self.uuid)
345 def wps_write_er_config_tag(clf, uuid, wait_remove=True):
349 write_data = wpas_get_er_config_token(uuid)
413 srv.uuid = None
416 srv.uuid
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/
H A Dwps-nfc.py87 def wpas_get_er_config_token(uuid):
91 ret = wpas.request("WPS_ER_NFC_CONFIG_TOKEN NDEF " + uuid)
116 def wpas_get_handover_sel(uuid):
120 if uuid is None:
123 res = wpas.request("NFC_GET_HANDOVER_SEL NDEF WPS-CR " + uuid).rstrip()
176 data = wpas_get_handover_sel(self.uuid)
345 def wps_write_er_config_tag(clf, uuid, wait_remove=True):
349 write_data = wpas_get_er_config_token(uuid)
413 srv.uuid = None
416 srv.uuid
[all...]

Completed in 19 milliseconds

123456789