Home
last modified time | relevance | path

Searched refs:thread_functions (Results 1 – 1 of 1) sorted by relevance

/external/dbus/dbus/
Ddbus-threads.c29 static DBusThreadFunctions thread_functions = variable
71 if (thread_functions.recursive_mutex_new) in _dbus_mutex_new()
72 return (* thread_functions.recursive_mutex_new) (); in _dbus_mutex_new()
73 else if (thread_functions.mutex_new) in _dbus_mutex_new()
74 return (* thread_functions.mutex_new) (); in _dbus_mutex_new()
114 if (mutex && thread_functions.recursive_mutex_free) in _dbus_mutex_free()
115 (* thread_functions.recursive_mutex_free) (mutex); in _dbus_mutex_free()
116 else if (mutex && thread_functions.mutex_free) in _dbus_mutex_free()
117 (* thread_functions.mutex_free) (mutex); in _dbus_mutex_free()
148 if (thread_functions.recursive_mutex_lock) in _dbus_mutex_lock()
[all …]