Searched defs:free_data_function (Results 1 - 7 of 7) sorted by relevance

/external/dbus/dbus/
H A Ddbus-timeout.c49 DBusFreeFunction free_data_function; /**< Free the application data. */ member in struct:DBusTimeout
58 * @param free_data_function function to be called to free the data.
65 DBusFreeFunction free_data_function)
78 timeout->free_handler_data_function = free_data_function;
114 dbus_timeout_set_data (timeout, NULL, NULL); /* call free_data_function */
233 * @param free_data_function the function to free the data.
243 DBusFreeFunction free_data_function)
295 timeout_list->timeout_free_data_function = free_data_function;
442 * @param free_data_function function to be called to free the data.
447 DBusFreeFunction free_data_function)
62 _dbus_timeout_new(int interval, DBusTimeoutHandler handler, void *data, DBusFreeFunction free_data_function) argument
238 _dbus_timeout_list_set_functions(DBusTimeoutList *timeout_list, DBusAddTimeoutFunction add_function, DBusRemoveTimeoutFunction remove_function, DBusTimeoutToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function) argument
445 dbus_timeout_set_data(DBusTimeout *timeout, void *data, DBusFreeFunction free_data_function) argument
[all...]
H A Ddbus-watch.c50 DBusFreeFunction free_data_function; /**< Free the application data. */ member in struct:DBusWatch
63 * @param free_data_function function to free the data
72 DBusFreeFunction free_data_function)
91 watch->free_handler_data_function = free_data_function;
125 dbus_watch_set_data (watch, NULL, NULL); /* call free_data_function */
248 * @param free_data_function the function to free the data.
258 DBusFreeFunction free_data_function)
337 watch_list->watch_free_data_function = free_data_function;
442 * @param free_data_function free data with this
448 DBusFreeFunction free_data_function)
67 _dbus_watch_new(int fd, unsigned int flags, dbus_bool_t enabled, DBusWatchHandler handler, void *data, DBusFreeFunction free_data_function) argument
253 _dbus_watch_list_set_functions(DBusWatchList *watch_list, DBusAddWatchFunction add_function, DBusRemoveWatchFunction remove_function, DBusWatchToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function) argument
445 _dbus_watch_set_handler(DBusWatch *watch, DBusWatchHandler handler, void *data, DBusFreeFunction free_data_function) argument
544 dbus_watch_set_data(DBusWatch *watch, void *data, DBusFreeFunction free_data_function) argument
[all...]
H A Ddbus-server.c819 * @param free_data_function function to free the data.
825 DBusFreeFunction free_data_function)
838 server->new_connection_free_data_function = free_data_function;
858 * @param free_data_function function to be called to free the data.
867 DBusFreeFunction free_data_function)
885 free_data_function);
911 * @param free_data_function function to be called to free the data.
920 DBusFreeFunction free_data_function)
938 free_data_function);
822 dbus_server_set_new_connection_function(DBusServer *server, DBusNewConnectionFunction function, void *data, DBusFreeFunction free_data_function) argument
862 dbus_server_set_watch_functions(DBusServer *server, DBusAddWatchFunction add_function, DBusRemoveWatchFunction remove_function, DBusWatchToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function) argument
915 dbus_server_set_timeout_functions(DBusServer *server, DBusAddTimeoutFunction add_function, DBusRemoveTimeoutFunction remove_function, DBusTimeoutToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function) argument
H A Ddbus-transport.c1090 * @param free_data_function function to free the data
1098 DBusFreeFunction free_data_function,
1107 transport->free_unix_user_data = free_data_function;
1095 _dbus_transport_set_unix_user_function(DBusTransport *transport, DBusAllowUnixUserFunction function, void *data, DBusFreeFunction free_data_function, void **old_data, DBusFreeFunction *old_free_data_function) argument
H A Ddbus-spawn.c687 * @param free_data_function function to be called to free the data.
696 DBusFreeFunction free_data_function)
703 free_data_function);
691 _dbus_babysitter_set_watch_functions(DBusBabysitter *sitter, DBusAddWatchFunction add_function, DBusRemoveWatchFunction remove_function, DBusWatchToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function) argument
H A Ddbus-connection.c4574 * @param free_data_function function to be called to free the data.
4583 DBusFreeFunction free_data_function)
4615 data, free_data_function);
4656 * @param free_data_function function to be called to free the data.
4665 DBusFreeFunction free_data_function)
4693 data, free_data_function);
4716 * @param free_data_function function to be called to free the data.
4722 DBusFreeFunction free_data_function)
4735 connection->free_wakeup_main_data = free_data_function;
4762 * @param free_data_function fre
4578 dbus_connection_set_watch_functions(DBusConnection *connection, DBusAddWatchFunction add_function, DBusRemoveWatchFunction remove_function, DBusWatchToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function) argument
4660 dbus_connection_set_timeout_functions(DBusConnection *connection, DBusAddTimeoutFunction add_function, DBusRemoveTimeoutFunction remove_function, DBusTimeoutToggledFunction toggled_function, void *data, DBusFreeFunction free_data_function) argument
4719 dbus_connection_set_wakeup_main_function(DBusConnection *connection, DBusWakeupMainFunction wakeup_main_function, void *data, DBusFreeFunction free_data_function) argument
4765 dbus_connection_set_dispatch_status_function(DBusConnection *connection, DBusDispatchStatusFunction function, void *data, DBusFreeFunction free_data_function) argument
4971 dbus_connection_set_unix_user_function(DBusConnection *connection, DBusAllowUnixUserFunction function, void *data, DBusFreeFunction free_data_function) argument
5042 dbus_connection_add_filter(DBusConnection *connection, DBusHandleMessageFunction function, void *user_data, DBusFreeFunction free_data_function) argument
[all...]
/external/dbus/bus/
H A Dconnection.c1814 DBusFreeFunction free_data_function; member in struct:__anon682
1856 if (ch->free_data_function)
1857 (* ch->free_data_function) (ch->data);
2190 DBusFreeFunction free_data_function)
2203 ch->free_data_function = free_data_function;
2187 bus_transaction_add_cancel_hook(BusTransaction *transaction, BusTransactionCancelFunction cancel_function, void *data, DBusFreeFunction free_data_function) argument

Completed in 71 milliseconds