Searched refs:path_bytes (Results 1 – 4 of 4) sorted by relevance
405 UINTN path_bytes; in get_disk_block_io() local420 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()
1470 const char *path_bytes; in _Py_fopen_obj() local1476 path_bytes = PyBytes_AS_STRING(bytes); in _Py_fopen_obj()1485 f = fopen(path_bytes, mode); in _Py_fopen_obj()
4052 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))
3998 PyObject *path_bytes = NULL; in PyUnicode_FSDecoder() local4007 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()