HomeSort by relevance Sort by last modified time
    Searched refs:uuid4 (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/curl/tests/python_dependencies/impacket/
uuid.py 27 uuid4, uuid5, uuid6 = unpack('>HHL', uuid[8:16])
28 return '%08X-%04X-%04X-%04X-%04X%08X' % (uuid1, uuid2, uuid3, uuid4, uuid5, uuid6)
32 (uuid1, uuid2, uuid3, uuid4, uuid5, uuid6) = map(lambda x: long(x, 16), matches.groups())
34 uuid += pack('>HHL', uuid4, uuid5, uuid6)
  /cts/tests/tests/bluetooth/src/android/bluetooth/cts/
ScanRecordTest.java 49 ParcelUuid uuid4 = ParcelUuid.fromString("0000110D-0000-1000-8000-00805F9B34FB"); local
53 assertFalse(data.getServiceUuids().contains(uuid4));
57 assertTrue(data.getServiceSolicitationUuids().contains(uuid4));
  /external/autotest/client/common_lib/cros/fake_device_server/
resource_delegate.py 96 id = uuid.uuid4().hex[0:6]
commands.py 41 command_id = '%s_%03d' % (uuid.uuid4().hex[0:6],
registration_tickets.py 62 robot_auth = uuid.uuid4().hex
  /external/autotest/client/cros/multimedia/
webrtc_utils.py 74 room_name = str(uuid.uuid4())
  /external/grpc-grpc/tools/run_tests/python_utils/
upload_rbe_results.py 202 'insertId': str(uuid.uuid4()),
227 'insertId': str(uuid.uuid4()),
upload_test_results.py 140 row = big_query_utils.make_row(str(uuid.uuid4()), test_results)
176 row = big_query_utils.make_row(str(uuid.uuid4()), test_results)
dockerjob.py 31 return '%s_%s' % (base_name, uuid.uuid4())
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
dependency_manager_util_unittest.py 108 base_path = os.path.join(tempfile.gettempdir(), str(uuid.uuid4()))
132 unzip_path = os.path.join(tempfile.gettempdir(), str(uuid.uuid4()))
153 base_path = os.path.join(tempfile.gettempdir(), str(uuid.uuid4()))
162 unzip_path = os.path.join(tempfile.gettempdir(), str(uuid.uuid4()))
170 unzip_path = os.path.join(tempfile.gettempdir(), str(uuid.uuid4()))
  /external/skia/infra/bots/
test_utils.py 34 f.write(str(uuid.uuid4()))
  /external/skqp/infra/bots/
test_utils.py 34 f.write(str(uuid.uuid4()))
  /external/vulkan-validation-layers/scripts/
external_revision_generator.py 88 unique_uuid = str(uuid.uuid4())
  /external/grpc-grpc/src/python/grpcio_tests/tests/
_runner.py 114 id = uuid.uuid4()
138 AugmentedCase(case, uuid.uuid4()) for case in filtered_cases
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_uuid.py 412 # uuid4 requires ctypes.
420 # Make sure uuid4() generates UUIDs that are actually version 4.
421 for u in [uuid.uuid4() for i in range(10)]:
427 for u in [uuid.uuid4() for i in range(1000)]:
455 # On at least some versions of OSX uuid.uuid4 generates
462 value = uuid.uuid4()
468 parent_value = uuid.uuid4().hex
  /external/grpc-grpc/tools/run_tests/performance/
bq_upload_result.py 80 row = big_query_utils.make_row(str(uuid.uuid4()), scenario_result)
  /external/python/cpython2/Lib/test/
test_uuid.py 381 # Make sure uuid4() generates UUIDs that are actually version 4.
382 for u in [uuid.uuid4() for i in range(10)]:
388 for u in [uuid.uuid4() for i in range(1000)]:
412 # On at least some versions of OSX uuid.uuid4 generates
419 value = uuid.uuid4()
426 parent_value = uuid.uuid4().hex
  /external/python/google-api-python-client/googleapiclient/
channel.py 298 return Channel('web_hook', str(uuid.uuid4()),
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
MkPkg.py 33 from uuid import uuid4
161 DistPkg.Header.Guid = str(uuid4())
  /external/skia/infra/bots/assets/
asset_utils_test.py 80 self.asset_name = str(uuid.uuid4())
169 self.asset_name = str(uuid.uuid4())
  /external/skqp/infra/bots/assets/
asset_utils_test.py 80 self.asset_name = str(uuid.uuid4())
169 self.asset_name = str(uuid.uuid4())
  /external/toolchain-utils/bestflags/
task.py 20 from uuid import uuid4
90 self._task_identifier = uuid4()
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaFileTable.py 36 TableName = "_%s_%s" % ("Dsc", uuid.uuid4().hex)
  /external/autotest/client/cros/tendo/n_faced_peerd/
manager.py 59 uuid.uuid4(),
  /external/autotest/venv/skylab_suite/
swarming_lib.py 120 % (logdog_server, uuid.uuid4().hex))

Completed in 322 milliseconds

1 2 3