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

/external/dbus/dbus/
H A Ddbus-pending-call.c762 * @param slot_p address of a global variable storing the slot
766 dbus_pending_call_allocate_data_slot (dbus_int32_t *slot_p) argument
768 _dbus_return_val_if_fail (slot_p != NULL, FALSE);
772 slot_p);
784 * @param slot_p address storing the slot to deallocate
787 dbus_pending_call_free_data_slot (dbus_int32_t *slot_p) argument
789 _dbus_return_if_fail (slot_p != NULL);
790 _dbus_return_if_fail (*slot_p >= 0);
792 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
H A Ddbus-server.c1089 * @param slot_p address of global variable storing the slot ID
1093 dbus_server_allocate_data_slot (dbus_int32_t *slot_p) argument
1097 slot_p);
1109 * @param slot_p address of the slot to deallocate
1112 dbus_server_free_data_slot (dbus_int32_t *slot_p) argument
1114 _dbus_return_if_fail (*slot_p >= 0);
1116 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
H A Ddbus-connection.c5875 * @param slot_p address of a global variable storing the slot
5879 dbus_connection_allocate_data_slot (dbus_int32_t *slot_p) argument
5883 slot_p);
5895 * @param slot_p address storing the slot to deallocate
5898 dbus_connection_free_data_slot (dbus_int32_t *slot_p) argument
5900 _dbus_return_if_fail (*slot_p >= 0);
5902 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
H A Ddbus-message.c4440 * @param slot_p address of a global variable storing the slot
4444 dbus_message_allocate_data_slot (dbus_int32_t *slot_p) argument
4448 slot_p);
4460 * @param slot_p address storing the slot to deallocate
4463 dbus_message_free_data_slot (dbus_int32_t *slot_p) argument
4465 _dbus_return_if_fail (*slot_p >= 0);
4467 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);

Completed in 187 milliseconds