OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DBusMutex
(Results
1 - 13
of
13
) sorted by null
/external/dbus/dbus/
dbus-threads-internal.h
32
DBusMutex
* _dbus_mutex_new (void);
33
void _dbus_mutex_free (
DBusMutex
*mutex);
34
void _dbus_mutex_lock (
DBusMutex
*mutex);
35
void _dbus_mutex_unlock (
DBusMutex
*mutex);
36
void _dbus_mutex_new_at_location (
DBusMutex
**location_p);
37
void _dbus_mutex_free_at_location (
DBusMutex
**location_p);
42
DBusMutex
*mutex);
44
DBusMutex
*mutex,
dbus-threads.h
41
typedef struct
DBusMutex
DBusMutex
;
46
typedef
DBusMutex
* (* DBusMutexNewFunction) (void);
48
typedef void (* DBusMutexFreeFunction) (
DBusMutex
*mutex);
50
typedef dbus_bool_t (* DBusMutexLockFunction) (
DBusMutex
*mutex);
52
typedef dbus_bool_t (* DBusMutexUnlockFunction) (
DBusMutex
*mutex);
61
typedef
DBusMutex
* (* DBusRecursiveMutexNewFunction) (void);
64
typedef void (* DBusRecursiveMutexFreeFunction) (
DBusMutex
*mutex);
68
typedef void (* DBusRecursiveMutexLockFunction) (
DBusMutex
*mutex);
72
typedef void (* DBusRecursiveMutexUnlockFunction) (
DBusMutex
*mutex)
[
all
...]
dbus-threads.c
45
#define _DBUS_DUMMY_MUTEX ((
DBusMutex
*)0xABCDEF)
68
DBusMutex
*
89
_dbus_mutex_new_at_location (
DBusMutex
**location_p)
110
_dbus_mutex_free (
DBusMutex
*mutex)
127
_dbus_mutex_free_at_location (
DBusMutex
**location_p)
144
_dbus_mutex_lock (
DBusMutex
*mutex)
161
_dbus_mutex_unlock (
DBusMutex
*mutex)
252
DBusMutex
*mutex)
271
DBusMutex
*mutex,
307
DBusMutex
***locks = data
[
all
...]
dbus-dataslot.h
60
DBusMutex
**lock_loc; /**< location of thread lock */
75
DBusMutex
**mutex_loc,
dbus-sysdeps-thread-win.c
93
static
DBusMutex
*
98
return (
DBusMutex
*) handle;
102
_dbus_windows_mutex_free (
DBusMutex
*mutex)
108
_dbus_windows_mutex_lock (
DBusMutex
*mutex)
114
_dbus_windows_mutex_unlock (
DBusMutex
*mutex)
144
DBusMutex
*mutex,
203
DBusMutex
*mutex)
210
DBusMutex
*mutex,
dbus-sysdeps-pthread.c
59
#define DBUS_MUTEX(m) ((
DBusMutex
*) m)
80
static
DBusMutex
*
114
_dbus_pthread_mutex_free (
DBusMutex
*mutex)
126
_dbus_pthread_mutex_lock (
DBusMutex
*mutex)
179
_dbus_pthread_mutex_unlock (
DBusMutex
*mutex)
238
DBusMutex
*mutex)
257
DBusMutex
*mutex,
dbus-connection-internal.h
100
DBusMutex
**mutex_loc,
101
DBusMutex
**dispatch_mutex_loc,
102
DBusMutex
**io_path_mutex_loc,
dbus-dataslot.c
70
DBusMutex
**mutex_loc,
193
DBusMutex
**mutex_loc = allocator->lock_loc;
387
DBusMutex
*mutex;
dbus-server-protected.h
59
DBusMutex
*mutex; /**< Lock on the server object */
dbus-internals.h
305
#define _DBUS_DECLARE_GLOBAL_LOCK(name) extern
DBusMutex
*_dbus_lock_##name
306
#define _DBUS_DEFINE_GLOBAL_LOCK(name)
DBusMutex
*_dbus_lock_##name
dbus-connection.c
249
DBusMutex
*mutex; /**< Lock on the entire DBusConnection */
251
DBusMutex
*dispatch_mutex; /**< Protects dispatch_acquired */
253
DBusMutex
*io_path_mutex; /**< Protects io_path_acquired */
274
DBusMutex
*slot_mutex; /**< Lock on slot_list so overall connection lock need not be taken */
441
DBusMutex
**mutex_loc,
442
DBusMutex
**dispatch_mutex_loc,
443
DBusMutex
**io_path_mutex_loc,
[
all
...]
dbus-server.c
1050
(
DBusMutex
**)&_DBUS_LOCK_NAME (server_slots),
[
all
...]
/external/dbus/test/name-test/
test-threads-init.c
73
check_mutex_lock (
DBusMutex
*mutex1,
74
DBusMutex
*mutex2,
115
DBusMutex
*mutex1, *dispatch_mutex1, *io_path_mutex1;
117
DBusMutex
*mutex2, *dispatch_mutex2, *io_path_mutex2;
Completed in 49 milliseconds