Home
last modified time | relevance | path

Searched refs:filename_bytes (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Modules/
Dreadline.c230 PyObject *filename_bytes; in readline_read_init_file_impl() local
232 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in readline_read_init_file_impl()
234 errno = rl_read_init_file(PyBytes_AS_STRING(filename_bytes)); in readline_read_init_file_impl()
235 Py_DECREF(filename_bytes); in readline_read_init_file_impl()
261 PyObject *filename_bytes; in readline_read_history_file_impl() local
263 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in readline_read_history_file_impl()
265 errno = read_history(PyBytes_AS_STRING(filename_bytes)); in readline_read_history_file_impl()
266 Py_DECREF(filename_bytes); in readline_read_history_file_impl()
293 PyObject *filename_bytes; in readline_write_history_file_impl() local
297 if (!PyUnicode_FSConverter(filename_obj, &filename_bytes)) in readline_write_history_file_impl()
[all …]
/third_party/ffmpeg/libavformat/
Dimg2dec.c408 char filename_bytes[1024]; in ff_img_read_packet() local
409 char *filename = filename_bytes; in ff_img_read_packet()
423 av_strlcpy(filename_bytes, s->path, sizeof(filename_bytes)); in ff_img_read_packet()
429 if (av_get_frame_filename(filename_bytes, sizeof(filename_bytes), in ff_img_read_packet()
436 !strcmp(filename_bytes, s->path) && in ff_img_read_packet()