Home
last modified time | relevance | path

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

12345678910>>...61

/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...]
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/versionmanager/
H A Dversion_manager.cpp41 std::string strUUID = DHContext::GetInstance().GetDeviceInfo().uuid; in Init()
62 int32_t VersionManager::AddDHVersion(const std::string &uuid, const DHVersion &dhVersion) in AddDHVersion() argument
64 if (!IsIdLengthValid(uuid)) { in AddDHVersion()
67 DHLOGI("addDHVersion uuid: %{public}s", GetAnonyString(uuid).c_str()); in AddDHVersion()
69 dhVersions_[uuid] = dhVersion; in AddDHVersion()
73 int32_t VersionManager::RemoveDHVersion(const std::string &uuid) in RemoveDHVersion() argument
75 if (!IsIdLengthValid(uuid)) { in RemoveDHVersion()
78 DHLOGI("uuid: %{public}s", GetAnonyString(uuid) in RemoveDHVersion()
89 GetDHVersion(const std::string &uuid, DHVersion &dhVersion) GetDHVersion() argument
106 GetCompVersion(const std::string &uuid, const DHType dhType, CompVersion &compVersion) GetCompVersion() argument
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/
H A Ddev_manager.cpp86 return GetDevInfoFromBucket(networkId).uuid; in ToUUID()
89 std::string DevManager::ToNetworkId(const std::string &uuid) in ToNetworkId() argument
91 return GetDevInfoFromBucket(uuid).networkId; in ToNetworkId()
101 if (detailInfo.uuid.empty()) { in GetDevInfoFromBucket()
115 if (detailInfo.uuid.empty() || detailInfo.networkId.empty()) { in UpdateBucket()
118 deviceInfos_.Set(detailInfo.uuid, detailInfo); in UpdateBucket()
126 if (!UnEncryptedLocalInfo_.uuid.empty()) { in GetUnEncryptedUuid()
127 return UnEncryptedLocalInfo_.uuid; in GetUnEncryptedUuid()
140 std::string uuid; in GetUnEncryptedUuid() local
141 DeviceManager::GetInstance().GetUuidByNetworkId(PKG_NAME, networkId, uuid); in GetUnEncryptedUuid()
166 std::string uuid; GetLocalDevice() local
194 std::string uuid; GetRemoteDevices() local
[all...]
/kernel/linux/linux-5.10/lib/
H A Duuid.c13 #include <linux/uuid.h>
26 * @uuid: where to put the generated UUID
33 void generate_random_uuid(unsigned char uuid[16]) in generate_random_uuid() argument
35 get_random_bytes(uuid, 16); in generate_random_uuid()
37 uuid[6] = (uuid[6] & 0x0F) | 0x40; in generate_random_uuid()
39 uuid[8] = (uuid[8] & 0x3F) | 0x80; in generate_random_uuid()
78 * @uuid: UUID string to check
88 bool uuid_is_valid(const char *uuid) in uuid_is_valid() argument
105 __uuid_parse(const char *uuid, __u8 b[16], const u8 ei[16]) __uuid_parse() argument
123 guid_parse(const char *uuid, guid_t *u) guid_parse() argument
129 uuid_parse(const char *uuid, uuid_t *u) uuid_parse() argument
[all...]
/kernel/linux/linux-6.6/lib/
H A Duuid.c13 #include <linux/uuid.h>
26 * @uuid: where to put the generated UUID
33 void generate_random_uuid(unsigned char uuid[16]) in generate_random_uuid() argument
35 get_random_bytes(uuid, 16); in generate_random_uuid()
37 uuid[6] = (uuid[6] & 0x0F) | 0x40; in generate_random_uuid()
39 uuid[8] = (uuid[8] & 0x3F) | 0x80; in generate_random_uuid()
78 * @uuid: UUID string to check
88 bool uuid_is_valid(const char *uuid) in uuid_is_valid() argument
105 __uuid_parse(const char *uuid, __u8 b[16], const u8 ei[16]) __uuid_parse() argument
123 guid_parse(const char *uuid, guid_t *u) guid_parse() argument
129 uuid_parse(const char *uuid, uuid_t *u) uuid_parse() argument
[all...]
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/componentmanager/
H A Dcomponent_manager.cpp302 std::string uuid = DHContext::GetInstance().GetDeviceInfo().uuid; in StartSource() local
309 VersionManager::GetInstance().GetCompVersion(uuid, item.first, compversion); in StartSource()
333 std::string uuid = DHContext::GetInstance().GetDeviceInfo().uuid; in StartSource() local
335 VersionManager::GetInstance().GetCompVersion(uuid, dhType, compVersion); in StartSource()
351 std::string uuid = DHContext::GetInstance().GetDeviceInfo().uuid; in StartSink() local
358 VersionManager::GetInstance().GetCompVersion(uuid, item.first, compversion); in StartSink()
390 std::string uuid in StartSink() local
532 Enable(const std::string &networkId, const std::string &uuid, const std::string &dhId, const DHType dhType) Enable() argument
598 RetryGetEnableParam(const std::string &networkId, const std::string &uuid, const std::string &dhId, const DHType dhType, EnableParam &param) RetryGetEnableParam() argument
620 Disable(const std::string &networkId, const std::string &uuid, const std::string &dhId, const DHType dhType) Disable() argument
657 GetDHType(const std::string &uuid, const std::string &dhId) const GetDHType() argument
669 GetEnableCapParam(const std::string &networkId, const std::string &uuid, DHType dhType, EnableParam &param, std::shared_ptr<CapabilityInfo> capability) GetEnableCapParam() argument
718 GetEnableMetaParam(const std::string &networkId, const std::string &uuid, DHType dhType, EnableParam &param, std::shared_ptr<MetaCapabilityInfo> metaCapPtr) GetEnableMetaParam() argument
753 GetCapParam(const std::string &uuid, const std::string &dhId, std::shared_ptr<CapabilityInfo> &capability) GetCapParam() argument
777 GetMetaParam(const std::string &uuid, const std::string &dhId, std::shared_ptr<MetaCapabilityInfo> &metaCapPtr) GetMetaParam() argument
793 GetEnableParam(const std::string &networkId, const std::string &uuid, const std::string &dhId, DHType dhType, EnableParam &param) GetEnableParam() argument
822 GetVersionFromVerMgr(const std::string &uuid, const DHType dhType, std::string &version, bool isSink) GetVersionFromVerMgr() argument
842 GetVersionFromVerInfoMgr(const std::string &uuid, const DHType dhType, std::string &version, bool isSink) GetVersionFromVerInfoMgr() argument
868 GetVersion(const std::string &uuid, DHType dhType, std::string &version, bool isSink) GetVersion() argument
886 UpdateVersionCache(const std::string &uuid, const VersionInfo &versionInfo) UpdateVersionCache() argument
946 std::string uuid = DHContext::GetInstance().GetUUIDByDeviceId(metaInfo.second->GetDeviceId()); RecoverDistributedHardware() local
1032 QueryBusinessState(const std::string &uuid, const std::string &dhId) QueryBusinessState() argument
[all...]
/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_spp.cpp56 btsocketPara.uuid.uuidLen = socketPara->uuid.uuidLen; in SppServerCreate()
57 btsocketPara.uuid.uuid = socketPara->uuid.uuid; in SppServerCreate()
107 btsocketPara.uuid.uuidLen = socketPara->uuid.uuidLen; in SppConnect()
108 btsocketPara.uuid.uuid in SppConnect()
[all...]
/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/server/sa/
H A Dintell_voice_service_manager.cpp244 void IntellVoiceServiceManager::CreateDetector(int32_t uuid) in CreateDetector() argument
247 if (!QuerySwitchByUuid(uuid)) { in CreateDetector()
248 INTELL_VOICE_LOG_INFO("switch is off, uuid is %{public}d", uuid); in CreateDetector()
252 if (detector_.count(uuid) != 0 && detector_[uuid] != nullptr) { in CreateDetector()
253 INTELL_VOICE_LOG_INFO("detector is already existed, no need to create, uuid:%{public}d", uuid); in CreateDetector()
257 auto cb = std::make_shared<TriggerDetectorCallback>([&, uuid]() { OnDetected(uuid); }); in CreateDetector()
278 StartDetection(int32_t uuid) StartDetection() argument
318 StopDetection(int32_t uuid) StopDetection() argument
328 OnDetected(int32_t uuid) OnDetected() argument
342 CreateAndStartServiceObject(int32_t uuid, bool needResetAdapter) CreateAndStartServiceObject() argument
401 ReleaseServiceObject(int32_t uuid) ReleaseServiceObject() argument
[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...]
/foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/src/communicator/
H A Ddev_manager.cpp48 std::string uuid = DevManager::GetInstance()->GetUuidByNodeId(std::string(deviceInfo.networkId)); in OnDeviceOnline() local
49 LOG_INFO("[Online] id:%{public}s, name:%{public}s, typeId:%{public}d", SoftBusAdapter::ToBeAnonymous(uuid).c_str(), in OnDeviceOnline()
56 std::string uuid = DevManager::GetInstance()->GetUuidByNodeId(std::string(deviceInfo.networkId)); in OnDeviceOffline() local
58 SoftBusAdapter::ToBeAnonymous(uuid).c_str(), deviceInfo.deviceName, deviceInfo.deviceTypeId); in OnDeviceOffline()
64 std::string uuid = DevManager::GetInstance()->GetUuidByNodeId(std::string(deviceInfo.networkId)); in OnDeviceChanged() local
65 LOG_INFO("[InfoChange] id:%{public}s, name:%{public}s", SoftBusAdapter::ToBeAnonymous(uuid).c_str(), in OnDeviceChanged()
142 std::string uuid = ""; in GetUuidByNodeId() local
144 "ohos.objectstore", nodeId.c_str(), uuid); in GetUuidByNodeId()
149 return uuid; in GetUuidByNodeId()
155 if (!localInfo_.uuid in GetLocalDevice()
165 std::string uuid; GetLocalDevice() local
[all...]
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/include/utils/
H A Ddh_context.h40 std::string uuid; member
41 // deviceId is uuid hash
49 (uuid == other.uuid) && in operator ==()
58 ((networkId.compare(other.networkId) == 0) && (uuid.compare(other.uuid) < 0)) || in operator <()
59 ((networkId.compare(other.networkId) == 0) && (uuid.compare(other.uuid) == 0) && in operator <()
61 ((networkId.compare(other.networkId) == 0) && (uuid.compare(other.uuid) in operator <()
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/sdp/
H A Dsdp_util.c48 uint16_t SdpAddAttributeForUuid(uint8_t *buffer, uint16_t offset, const BtUuid *uuid) in SdpAddAttributeForUuid() argument
50 switch (uuid->type) { in SdpAddAttributeForUuid()
56 *(uint16_t *)(buffer + offset) = H2BE_16(uuid->uuid16); in SdpAddAttributeForUuid()
64 *(uint32_t *)(buffer + offset) = H2BE_32(uuid->uuid32); in SdpAddAttributeForUuid()
72 SdpReverseForBigEndian(uuid->uuid128, buffer + offset, SDP_UUID128_LENGTH); in SdpAddAttributeForUuid()
76 LOG_ERROR("[%{public}s][%{public}d] Wrong type [0x%02x]", __FUNCTION__, __LINE__, uuid->type); in SdpAddAttributeForUuid()
135 uint16_t SdpGetUuid(uint8_t *buffer, BtUuid *uuid) in SdpGetUuid() argument
149 uuid->type = BT_UUID_16; in SdpGetUuid()
150 uuid->uuid16 = BE2H_16(*(uint16_t *)(buffer + offset)); in SdpGetUuid()
153 uuid in SdpGetUuid()
[all...]
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/
H A Ddistributed_hardware_manager_factory.cpp139 const auto uuid = GetUUIDByDm(networkId); in CheckExitSAOrNot() local
141 DHLOGI("Send trusted device online, networkId = %{public}s, uuid = %{public}s", in CheckExitSAOrNot()
142 GetAnonyString(networkId).c_str(), GetAnonyString(uuid).c_str()); in CheckExitSAOrNot()
145 std::thread([this, networkId, uuid, udid, deviceType, osType]() { in CheckExitSAOrNot()
146 this->SendOnLineEvent(networkId, uuid, udid, deviceType, osType); in CheckExitSAOrNot()
156 int32_t DistributedHardwareManagerFactory::SendOnLineEvent(const std::string &networkId, const std::string &uuid, in SendOnLineEvent() argument
159 if (!IsIdLengthValid(networkId) || !IsIdLengthValid(uuid) || !IsIdLengthValid(udid)) { in SendOnLineEvent()
172 if (DHContext::GetInstance().IsDeviceOnline(uuid)) { in SendOnLineEvent()
173 DHLOGW("device is already online, uuid = %{public}s", GetAnonyString(uuid) in SendOnLineEvent()
204 SendOffLineEvent(const std::string &networkId, const std::string &uuid, const std::string &udid, uint16_t deviceType) SendOffLineEvent() argument
[all...]
/foundation/communication/dsoftbus/tests/adapter/bluetooth/
H A Dsoftbus_adapter_ble_gatt_server_test.cpp44 SoftBusBtUuid uuid; member in OHOS::BtUuidRecordCtx
122 .uuid = (char *)serviceUuid, in HWTEST_F()
159 .uuid = (char *)serviceUuid, in HWTEST_F()
178 .uuid = (char *)serviceUuid, in HWTEST_F()
187 .uuid = nullptr, in HWTEST_F()
192 service.uuid = (char *)serviceUuid; in HWTEST_F()
211 .uuid = (char *)serviceUuid, in HWTEST_F()
219 .uuid = nullptr, in HWTEST_F()
230 characteristic.uuid = (char *)netCharacteristic; in HWTEST_F()
253 .uuid in HWTEST_F()
723 StubServiceAddCallback(int32_t status, SoftBusBtUuid *uuid, int32_t srvcHandle) StubServiceAddCallback() argument
728 StubCharacteristicAddCallback(int32_t status, SoftBusBtUuid *uuid, int32_t srvcHandle, int32_t characteristicHandle) StubCharacteristicAddCallback() argument
734 StubDescriptorAddCallback(int32_t status, SoftBusBtUuid *uuid, int32_t srvcHandle, int32_t descriptorHandle) StubDescriptorAddCallback() argument
[all...]
/kernel/linux/linux-5.10/fs/btrfs/
H A Duuid-tree.c6 #include <linux/uuid.h>
14 static void btrfs_uuid_to_key(u8 *uuid, u8 type, struct btrfs_key *key) in btrfs_uuid_to_key() argument
17 key->objectid = get_unaligned_le64(uuid); in btrfs_uuid_to_key()
18 key->offset = get_unaligned_le64(uuid + sizeof(u64)); in btrfs_uuid_to_key()
22 static int btrfs_uuid_tree_lookup(struct btrfs_root *uuid_root, u8 *uuid, in btrfs_uuid_tree_lookup() argument
44 btrfs_uuid_to_key(uuid, type, &key); in btrfs_uuid_tree_lookup()
61 "uuid item with illegal size %lu!", in btrfs_uuid_tree_lookup()
82 int btrfs_uuid_tree_add(struct btrfs_trans_handle *trans, u8 *uuid, u8 type, in btrfs_uuid_tree_add() argument
95 ret = btrfs_uuid_tree_lookup(uuid_root, uuid, type, subid_cpu); in btrfs_uuid_tree_add()
104 btrfs_uuid_to_key(uuid, typ in btrfs_uuid_tree_add()
147 btrfs_uuid_tree_remove(struct btrfs_trans_handle *trans, u8 *uuid, u8 type, u64 subid) btrfs_uuid_tree_remove() argument
229 btrfs_uuid_iter_rem(struct btrfs_root *uuid_root, u8 *uuid, u8 type, u64 subid) btrfs_uuid_iter_rem() argument
257 btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info, u8 *uuid, u8 type, u64 subvolid) btrfs_check_uuid_tree_entry() argument
343 u8 uuid[BTRFS_UUID_SIZE]; btrfs_uuid_tree_iterate() local
[all...]
/kernel/linux/linux-6.6/fs/btrfs/
H A Duuid-tree.c6 #include <linux/uuid.h>
15 #include "uuid-tree.h"
17 static void btrfs_uuid_to_key(u8 *uuid, u8 type, struct btrfs_key *key) in btrfs_uuid_to_key() argument
20 key->objectid = get_unaligned_le64(uuid); in btrfs_uuid_to_key()
21 key->offset = get_unaligned_le64(uuid + sizeof(u64)); in btrfs_uuid_to_key()
25 static int btrfs_uuid_tree_lookup(struct btrfs_root *uuid_root, u8 *uuid, in btrfs_uuid_tree_lookup() argument
47 btrfs_uuid_to_key(uuid, type, &key); in btrfs_uuid_tree_lookup()
64 "uuid item with illegal size %lu!", in btrfs_uuid_tree_lookup()
85 int btrfs_uuid_tree_add(struct btrfs_trans_handle *trans, u8 *uuid, u8 type, in btrfs_uuid_tree_add() argument
98 ret = btrfs_uuid_tree_lookup(uuid_root, uuid, typ in btrfs_uuid_tree_add()
149 btrfs_uuid_tree_remove(struct btrfs_trans_handle *trans, u8 *uuid, u8 type, u64 subid) btrfs_uuid_tree_remove() argument
231 btrfs_uuid_iter_rem(struct btrfs_root *uuid_root, u8 *uuid, u8 type, u64 subid) btrfs_uuid_iter_rem() argument
259 btrfs_check_uuid_tree_entry(struct btrfs_fs_info *fs_info, u8 *uuid, u8 type, u64 subvolid) btrfs_check_uuid_tree_entry() argument
345 u8 uuid[BTRFS_UUID_SIZE]; btrfs_uuid_tree_iterate() local
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/communicator/src/
H A Ddevice_manager_adapter.cpp256 ZLOGI("[online] uuid:%{public}s, name:%{public}s, type:%{public}d, authForm:%{public}d, osType:%{public}d", in Online()
257 KvStoreUtils::ToBeAnonymous(dvInfo.uuid).c_str(), dvInfo.deviceName.c_str(), dvInfo.deviceType, in Online()
260 syncTask_.Insert(dvInfo.uuid, dvInfo.uuid); in Online()
289 void DeviceManagerAdapter::NotifyReadyEvent(const std::string &uuid) in NotifyReadyEvent() argument
291 if (uuid.empty() || !syncTask_.Contains(uuid)) { in NotifyReadyEvent()
295 syncTask_.Erase(uuid); in NotifyReadyEvent()
296 if (uuid == CLOUD_DEVICE_UUID) { in NotifyReadyEvent()
299 ZLOGI("[NotifyReadyEvent] uuid in NotifyReadyEvent()
[all...]
/foundation/communication/dsoftbus/core/authentication/src/virtual/
H A Dauth_interface_virtual.c54 int32_t AuthFlushDevice(const char *uuid) in AuthFlushDevice() argument
56 (void)uuid; in AuthFlushDevice()
118 int32_t AuthGetPreferConnInfo(const char *uuid, AuthConnInfo *connInfo, bool isMeta) in AuthGetPreferConnInfo() argument
120 (void)uuid; in AuthGetPreferConnInfo()
126 int32_t AuthGetP2pConnInfo(const char *uuid, AuthConnInfo *connInfo, bool isMeta) in AuthGetP2pConnInfo() argument
128 (void)uuid; in AuthGetP2pConnInfo()
134 int32_t AuthGetHmlConnInfo(const char *uuid, AuthConnInfo *connInfo, bool isMeta) in AuthGetHmlConnInfo() argument
136 (void)uuid; in AuthGetHmlConnInfo()
142 void AuthGetLatestIdByUuid(const char *uuid, AuthLinkType type, bool isMeta, AuthHandle *authHandle) in AuthGetLatestIdByUuid() argument
144 (void)uuid; in AuthGetLatestIdByUuid()
159 AuthGetIdByUuid(const char *uuid, AuthLinkType type, bool isServer, bool isMeta) AuthGetIdByUuid() argument
219 AuthGetDeviceUuid(int64_t authId, char *uuid, uint16_t size) AuthGetDeviceUuid() argument
[all...]
/foundation/communication/dsoftbus/core/adapter/br/mock/
H A Dwrapper_br_interface.c34 static int32_t OpenSppServer(const char *name, int32_t nameLen, const char *uuid, int32_t isSecure) in OpenSppServer() argument
44 socketPara.uuid.uuid = (char *)uuid; in OpenSppServer()
45 socketPara.uuid.uuidLen = strlen(uuid); in OpenSppServer()
57 static int32_t ConnectByPort(const char *uuid, const BT_ADDR mac, const int socketPsmValue, void *connectCallback) in ConnectByPort() argument
64 socketPara.uuid.uuid = (char *)uuid; in ConnectByPort()
84 Connect(const char *uuid, const BT_ADDR mac, void *connectCallback) Connect() argument
[all...]

Completed in 17 milliseconds

12345678910>>...61