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()
1337 char *path_bytes; in _Py_fopen_obj() local1343 path_bytes = PyBytes_AS_STRING(bytes); in _Py_fopen_obj()1347 f = fopen(path_bytes, mode); in _Py_fopen_obj()
3568 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))
3770 PyObject *path_bytes = NULL; in PyUnicode_FSDecoder() local3779 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()