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.c1470 const char *path_bytes; in _Py_fopen_obj() local
1476 path_bytes = PyBytes_AS_STRING(bytes); in _Py_fopen_obj()
1485 f = fopen(path_bytes, mode); in _Py_fopen_obj()
/external/python/cpython3/Lib/test/
Dtest_os.py4052 path_bytes = os.fsencode(self.path)
4053 entries = list(os.scandir(path_bytes))
4065 path_bytes = cls(os.fsencode(self.path))
4067 entries = list(os.scandir(path_bytes))
/external/python/cpython3/Objects/
Dunicodeobject.c3998 PyObject *path_bytes = NULL; in PyUnicode_FSDecoder() local
4007 path_bytes = PyBytes_FromObject(path); in PyUnicode_FSDecoder()
4009 if (!path_bytes) { in PyUnicode_FSDecoder()
4012 output = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AS_STRING(path_bytes), in PyUnicode_FSDecoder()
4013 PyBytes_GET_SIZE(path_bytes)); in PyUnicode_FSDecoder()
4014 Py_DECREF(path_bytes); in PyUnicode_FSDecoder()