Searched defs:slot_p (Results 1 - 4 of 4) sorted by relevance

/external/dbus/dbus/
H A Ddbus-pending-call.c697 * @param slot_p address of a global variable storing the slot
701 dbus_pending_call_allocate_data_slot (dbus_int32_t *slot_p) argument
703 _dbus_return_val_if_fail (slot_p != NULL, FALSE);
707 slot_p);
719 * @param slot_p address storing the slot to deallocate
722 dbus_pending_call_free_data_slot (dbus_int32_t *slot_p) argument
724 _dbus_return_if_fail (slot_p != NULL);
725 _dbus_return_if_fail (*slot_p >= 0);
727 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
H A Ddbus-server.c1043 * @param slot_p address of global variable storing the slot ID
1047 dbus_server_allocate_data_slot (dbus_int32_t *slot_p) argument
1051 slot_p);
1063 * @param slot_p address of the slot to deallocate
1066 dbus_server_free_data_slot (dbus_int32_t *slot_p) argument
1068 _dbus_return_if_fail (*slot_p >= 0);
1070 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
H A Ddbus-message.c4326 * @param slot_p address of a global variable storing the slot
4330 dbus_message_allocate_data_slot (dbus_int32_t *slot_p) argument
4334 slot_p);
4346 * @param slot_p address storing the slot to deallocate
4349 dbus_message_free_data_slot (dbus_int32_t *slot_p) argument
4351 _dbus_return_if_fail (*slot_p >= 0);
4353 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
H A Ddbus-connection.c5865 * @param slot_p address of a global variable storing the slot
5869 dbus_connection_allocate_data_slot (dbus_int32_t *slot_p) argument
5873 slot_p);
5885 * @param slot_p address storing the slot to deallocate
5888 dbus_connection_free_data_slot (dbus_int32_t *slot_p) argument
5890 _dbus_return_if_fail (*slot_p >= 0);
5892 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);

Completed in 361 milliseconds