Lines Matching defs:thiz

37 #define object_lock_exclusive(thiz) object_lock_exclusive_((thiz), __FILE__, __LINE__)  argument
38 #define object_unlock_exclusive(thiz) object_unlock_exclusive_((thiz), __FILE__, __LINE__) argument
39 #define object_unlock_exclusive_attributes(thiz, attr) \ argument
41 #define object_cond_wait(thiz) object_cond_wait_((thiz), __FILE__, __LINE__) argument
46 #define object_lock_shared(thiz) object_lock_exclusive(thiz) argument
47 #define object_unlock_shared(thiz) object_unlock_exclusive(thiz) argument
53 #define interface_lock_exclusive(thiz) object_lock_exclusive(InterfaceToIObject(thiz)) argument
54 #define interface_unlock_exclusive(thiz) object_unlock_exclusive(InterfaceToIObject(thiz)) argument
55 #define interface_unlock_exclusive_attributes(thiz, attr) \ argument
57 #define interface_lock_shared(thiz) object_lock_shared(InterfaceToIObject(thiz)) argument
58 #define interface_unlock_shared(thiz) object_unlock_shared(InterfaceToIObject(thiz)) argument
59 #define interface_cond_wait(thiz) object_cond_wait(InterfaceToIObject(thiz)) argument
60 #define interface_cond_signal(thiz) object_cond_signal(InterfaceToIObject(thiz)) argument
61 #define interface_cond_broadcast(thiz) object_cond_broadcast(InterfaceToIObject(thiz)) argument
67 #define object_lock_peek(thiz) object_lock_shared(thiz) argument
68 #define object_unlock_peek(thiz) object_unlock_shared(thiz) argument
69 #define interface_lock_poke(thiz) interface_lock_exclusive(thiz) argument
70 #define interface_unlock_poke(thiz) interface_unlock_exclusive(thiz) argument
71 #define interface_lock_peek(thiz) interface_lock_shared(thiz) argument
72 #define interface_unlock_peek(thiz) interface_unlock_shared(thiz) argument