Home
last modified time | relevance | path

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

/linux/drivers/android/
H A Dbinder_trace.h59 TP_PROTO(bool proc_work, bool transaction_stack, bool thread_todo),
60 TP_ARGS(proc_work, transaction_stack, thread_todo),
64 __field(bool, transaction_stack)
69 __entry->transaction_stack = transaction_stack;
72 TP_printk("proc_work=%d transaction_stack=%d thread_todo=%d",
73 __entry->proc_work, __entry->transaction_stack,
H A Dbinder.c25 * node->async_todo), as well as thread->transaction_stack
576 return !thread->transaction_stack && in binder_available_for_proc_work_ilocked()
1515 BUG_ON(target_thread->transaction_stack != t); in binder_pop_transaction_ilocked()
1516 BUG_ON(target_thread->transaction_stack->from != target_thread); in binder_pop_transaction_ilocked()
1517 target_thread->transaction_stack = in binder_pop_transaction_ilocked()
1518 target_thread->transaction_stack->from_parent; in binder_pop_transaction_ilocked()
3047 in_reply_to = thread->transaction_stack; in binder_transaction()
3073 thread->transaction_stack = in_reply_to->to_parent; in binder_transaction()
3086 if (target_thread->transaction_stack != in_reply_to) { in binder_transaction()
3089 target_thread->transaction_stack in binder_transaction()
[all...]
H A Dbinder_internal.h468 * @transaction_stack: stack of in-progress transactions for this thread
499 struct binder_transaction *transaction_stack; member