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.c1337 char *path_bytes; in _Py_fopen_obj() local
1343 path_bytes = PyBytes_AS_STRING(bytes); in _Py_fopen_obj()
1347 f = fopen(path_bytes, mode); in _Py_fopen_obj()
/external/python/cpython3/Lib/test/
Dtest_os.py3568 path_bytes = os.fsencode(self.path)
3569 entries = list(os.scandir(path_bytes))
3581 path_bytes = cls(os.fsencode(self.path))
3583 entries = list(os.scandir(path_bytes))
/external/python/cpython3/Objects/
Dunicodeobject.c3770 PyObject *path_bytes = NULL; in PyUnicode_FSDecoder() local
3779 path_bytes = PyBytes_FromObject(path); in PyUnicode_FSDecoder()
3781 if (!path_bytes) { in PyUnicode_FSDecoder()
3784 output = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AS_STRING(path_bytes), in PyUnicode_FSDecoder()
3785 PyBytes_GET_SIZE(path_bytes)); in PyUnicode_FSDecoder()
3786 Py_DECREF(path_bytes); in PyUnicode_FSDecoder()