Lines Matching refs:callback_data
32 void content_foreach_func(ExifEntry *entry, void *callback_data);
33 void content_foreach_func(ExifEntry *entry, void *UNUSED(callback_data)) in content_foreach_func() argument
50 void data_foreach_func(ExifContent *content, void *callback_data);
51 void data_foreach_func(ExifContent *content, void *callback_data) in data_foreach_func() argument
54 exif_content_foreach_entry(content, content_foreach_func, callback_data); in data_foreach_func()
59 void test_parse(const char *filename, void *callback_data);
60 void test_parse(const char *filename, void *callback_data) in test_parse() argument
66 exif_data_foreach_content(d, data_foreach_func, callback_data); in test_parse()
72 typedef void (*test_parse_func) (const char *filename, void *callback_data);
76 void split_ws_string(const char *string, test_parse_func func, void *callback_data);
77 void split_ws_string(const char *string, test_parse_func func, void *callback_data) in split_ws_string() argument
90 func(str, callback_data); in split_ws_string()
110 void *callback_data = NULL; in main() local
114 split_ws_string(envar, test_parse, callback_data); in main()
118 test_parse(argv[i], callback_data); in main()