OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PY_GETENTROPY
(Results
1 - 2
of
2
) sorted by null
/external/python/cpython2/Python/
random.c
104
and this error is not supported in
py_getentropy
() and getrandom() is called
109
#define
PY_GETENTROPY
1
116
py_getentropy
(unsigned char *buffer, Py_ssize_t size, int fatal)
function
350
#elif defined(
PY_GETENTROPY
)
351
return
py_getentropy
(buffer, size, 0);
413
#elif defined(
PY_GETENTROPY
)
414
(void)
py_getentropy
(secret, secret_size, 1);
429
#elif defined(
PY_GETENTROPY
)
/external/python/cpython3/Python/
bootstrap_hash.c
199
#define
PY_GETENTROPY
1
213
py_getentropy
(char *buffer, Py_ssize_t size, int raise)
function
444
- getentropy() function (ex: OpenBSD): call
py_getentropy
()
481
#if defined(PY_GETRANDOM) || defined(
PY_GETENTROPY
)
501
#if defined(PY_GETRANDOM) || defined(
PY_GETENTROPY
)
505
res =
py_getentropy
(buffer, size, raise);
Completed in 313 milliseconds