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

1 2

  /bootable/recovery/applypatch/
applypatch.sh 131 run_command dd if=/dev/urandom of=$WORK_DIR/old.file count=100 bs=1024 || fail
223 run_command dd if=/dev/urandom of=$WORK_DIR/old.file count=100 bs=1024 || fail
231 run_command dd if=/dev/urandom of=$CACHE_TEMP_SOURCE count=100 bs=1024 || fail
238 run_command dd if=/dev/urandom of=$WORK_DIR/new.file count=100 bs=1024 || fail
326 run_command dd if=/dev/urandom of=$WORK_DIR/old.file count=100 bs=1024 || fail
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_os.py 536 self.assertEqual(len(os.urandom(0)), 0)
537 self.assertEqual(len(os.urandom(1)), 1)
538 self.assertEqual(len(os.urandom(10)), 10)
539 self.assertEqual(len(os.urandom(100)), 100)
540 self.assertEqual(len(os.urandom(1000)), 1000)
543 data1 = os.urandom(16)
544 data2 = os.urandom(16)
552 'data = os.urandom(%s)' % count,
    [all...]
test_multiprocessing.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_os.py 536 self.assertEqual(len(os.urandom(0)), 0)
537 self.assertEqual(len(os.urandom(1)), 1)
538 self.assertEqual(len(os.urandom(10)), 10)
539 self.assertEqual(len(os.urandom(100)), 100)
540 self.assertEqual(len(os.urandom(1000)), 1000)
543 data1 = os.urandom(16)
544 data2 = os.urandom(16)
552 'data = os.urandom(%s)' % count,
    [all...]
test_multiprocessing.py     [all...]
  /external/chromium_org/third_party/tlslite/tlslite/utils/
cryptomath.py 50 # Check that os.urandom works
52 length = len(zlib.compress(os.urandom(1000)))
56 b = bytearray(os.urandom(howMany))
60 prngName = "os.urandom"
  /external/chromium_org/third_party/tlslite/tests/
tlstest.py 65 b1 = os.urandom(1)
66 b10 = os.urandom(10)
67 b100 = os.urandom(100)
68 b1000 = os.urandom(1000)
  /external/chromium_org/net/tools/testserver/
minica.py 15 rand = os.urandom(length_in_bytes)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
_stream_hybi.py 133 masking_nonce = os.urandom(4)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
process.py 309 self._authkey = AuthenticationString(os.urandom(32))
connection.py 407 message = os.urandom(MESSAGE_LENGTH)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
process.py 309 self._authkey = AuthenticationString(os.urandom(32))
connection.py 407 message = os.urandom(MESSAGE_LENGTH)
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
_stream_hybi.py 133 masking_nonce = os.urandom(4)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uuid.py 540 # Otherwise, get randomness from urandom or the 'random' module.
543 return UUID(bytes=os.urandom(16), version=4)
urllib2.py 920 # Use /dev/urandom if it is available. Fall back to random module
923 if os.path.exists("/dev/urandom"):
924 f = open("/dev/urandom"
    [all...]
random.py 47 from os import urandom as _urandom
68 # the Mersenne Twister and os.urandom() core generators.
801 by the operating system (such as /dev/urandom on Unix or
804 Not available on all systems (see os.urandom() for details).
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uuid.py 540 # Otherwise, get randomness from urandom or the 'random' module.
543 return UUID(bytes=os.urandom(16), version=4)
urllib2.py 920 # Use /dev/urandom if it is available. Fall back to random module
923 if os.path.exists("/dev/urandom"):
924 f = open("/dev/urandom"
    [all...]
random.py 47 from os import urandom as _urandom
68 # the Mersenne Twister and os.urandom() core generators.
801 by the operating system (such as /dev/urandom on Unix or
804 Not available on all systems (see os.urandom() for details).
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
client_for_testing.py 322 original_key = os.urandom(16)
769 # TODO(tyoshino): os.urandom does open/read/close for every call. If
772 masking_nonce = os.urandom(4)
    [all...]
mux_client_for_testing.py 555 original_key = os.urandom(16)
  /system/extras/tests/fstest/
perm_checker.conf 69 /dev/urandom 666 666 root root root root
  /external/sepolicy/
file_contexts 113 /dev/urandom u:object_r:urandom_device:s0
  /external/eigen/unsupported/test/mpreal/
mpreal.h 417 friend const mpreal urandom (gmp_randstate_t& state, mp_rnd_t rnd_mode = mpreal::get_default_rnd()); // use gmp_randinit_default() to init state, gmp_randclear() to clear
423 // Check urandom() for more precise control.
2462 inline const mpreal urandom (gmp_randstate_t& state, mp_rnd_t rnd_mode) function in namespace:mpfr
    [all...]

Completed in 837 milliseconds

1 2