Home
last modified time | relevance | path

Searched refs:path_bytes (Results 1 – 4 of 4) sorted by relevance

/external/avb/examples/uefi/
Duefi_avb_ops.c405 UINTN path_bytes; in get_disk_block_io() local
420 err = walk_path(init_path, walker_path, &(*io_path), &path_bytes); in get_disk_block_io()
426 disk_path = (EFI_DEVICE_PATH*)avb_malloc(path_bytes); in get_disk_block_io()
427 avb_memcpy(disk_path, *io_path, path_bytes); in get_disk_block_io()
/external/python/cpython3/Python/
Dfileutils.c1115 char *path_bytes; in _Py_fopen_obj() local
1123 path_bytes = PyBytes_AS_STRING(bytes); in _Py_fopen_obj()
1127 f = fopen(path_bytes, mode); in _Py_fopen_obj()
/external/python/cpython3/Objects/
Dunicodeobject.c3928 PyObject *path_bytes = NULL; in PyUnicode_FSDecoder() local
3937 path_bytes = PyBytes_FromObject(path); in PyUnicode_FSDecoder()
3939 if (!path_bytes) { in PyUnicode_FSDecoder()
3942 output = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AS_STRING(path_bytes), in PyUnicode_FSDecoder()
3943 PyBytes_GET_SIZE(path_bytes)); in PyUnicode_FSDecoder()
3944 Py_DECREF(path_bytes); in PyUnicode_FSDecoder()
/external/python/cpython3/Lib/test/
Dtest_os.py3289 path_bytes = os.fsencode(self.path)
3290 entries = list(os.scandir(path_bytes))