Home
last modified time | relevance | path

Searched refs:old_files (Results 1 – 4 of 4) sorted by relevance

/third_party/NuttX/fs/inode/
Dfs_files.c794 struct files_struct *dup_fd(struct files_struct *old_files) in dup_fd() argument
799 if((old_files == NULL) || (old_files->fdt == NULL) || (old_files->fdt->max_fds == 0)) in dup_fd()
811 files->next_fd = old_files->next_fd; in dup_fd()
815 strncpy_s(files->workdir, PATH_MAX - 1, old_files->workdir, PATH_MAX - 1); in dup_fd()
817 old_fdt = old_files->fdt; in dup_fd()
870 struct files_struct *create_files_snapshot(const struct files_struct *old_files) in create_files_snapshot() argument
875 if ((old_files == NULL) || (old_files->fdt == NULL) || (old_files->fdt->max_fds == 0)) in create_files_snapshot()
887 files->next_fd = old_files->next_fd; in create_files_snapshot()
891 strncpy_s(files->workdir, PATH_MAX - 1, old_files->workdir, PATH_MAX - 1); in create_files_snapshot()
893 old_fdt = old_files->fdt; in create_files_snapshot()
/third_party/gstreamer/gstplugins_good/gst/multifile/
Dgstmultifilesink.c431 g_queue_init (&sink->old_files); in gst_multi_file_sink_start()
470 g_queue_foreach (&multifilesink->old_files, (GFunc) g_free, NULL); in gst_multi_file_sink_stop()
471 g_queue_clear (&multifilesink->old_files); in gst_multi_file_sink_stop()
953 g_queue_push_tail (&multifilesink->old_files, fn); in gst_multi_file_sink_add_old_file()
967 while (g_queue_get_length (&multifilesink->old_files) >= max_files) { in gst_multi_file_sink_ensure_max_files()
970 filename = g_queue_pop_head (&multifilesink->old_files); in gst_multi_file_sink_ensure_max_files()
Dgstmultifilesink.h90 GQueue old_files; /* keep track of old files for max_files handling */ member
/third_party/googletest/googletest/scripts/
Dupload.py895 old_files = out.splitlines()
903 self.svnls_cache[dirname] = (old_files, out.splitlines())
904 old_files, new_files = self.svnls_cache[dirname]
905 if relfilename in old_files and relfilename not in new_files:
907 elif relfilename in old_files and relfilename in new_files: