Home | History | Annotate | Download | only in test

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))
50 void data_foreach_func(ExifContent *content, void *callback_data);
51 void data_foreach_func(ExifContent *content, void *callback_data)
54 exif_content_foreach_entry(content, content_foreach_func, callback_data);
59 void test_parse(const char *filename, void *callback_data);
60 void test_parse(const char *filename, void *callback_data)
66 exif_data_foreach_content(d, data_foreach_func, callback_data);
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)
90 func(str, callback_data);
110 void *callback_data = NULL;
114 split_ws_string(envar, test_parse, callback_data);
118 test_parse(argv[i], callback_data);