MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / ghb_save_queue

Function ghb_save_queue

gtk/src/presets.c:1718–1728  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1716}
1717
1718void
1719ghb_save_queue(GhbValue *queue)
1720{
1721 pid_t pid;
1722 char *name;
1723
1724 pid = getpid();
1725 name = g_strdup_printf ("queue.%" PRId64, (int64_t)pid);
1726 write_config_file(name, queue);
1727 g_free(name);
1728}
1729
1730GhbValue*
1731ghb_load_old_queue(int pid)

Callers 11

ghb_add_title_to_queueFunction · 0.85
ghb_backend_eventsFunction · 0.85
open_queue_file_cbFunction · 0.85
ghb_reload_queueFunction · 0.85
queue_reset_action_cbFunction · 0.85
ghb_queue_remove_rowFunction · 0.85
queue_move_itemFunction · 0.85

Calls 1

write_config_fileFunction · 0.85

Tested by

no test coverage detected