Lines Matching +full:proc +full:- +full:id
1 /* SPDX-License-Identifier: GPL-2.0 */
27 * struct binder_device - information about a binder device node
44 * binderfs_mount_opts - mount options for binderfs
54 * binderfs_info - information about a binderfs mount
57 * binder-control device.
64 * @proc_log_dir: Pointer to the directory dentry containing process-specific
122 (entry)->name; \
145 * struct binder_work - work enqueued on a worklist
149 * There are separate work lists for proc, thread, and node (async).
175 * struct binder_node - binder node bookkeeping
176 * @debug_id: unique ID for debugging
180 * (protected by @proc->inner_lock)
181 * @rb_node: element for proc->nodes tree
182 * (protected by @proc->inner_lock)
185 * @proc: binder_proc that owns this node
191 * (protected by @proc->inner_lock if @proc
194 * (protected by @proc->inner_lock if @proc
197 * (protected by @proc->inner_lock if @proc
200 * (protected by @proc->inner_lock while @proc
202 * if @proc is NULL. During inc/dec and node release
204 * as the node dies and @proc becomes NULL)
210 * (protected by @proc->inner_lock if @proc
213 * (protected by @proc->inner_lock if @proc
216 * (protected by @proc->inner_lock if @proc
219 * (protected by @proc->inner_lock if @proc
230 * (protected by @proc->inner_lock)
242 struct binder_proc *proc; member
253 * proc inner_lock
275 * (protected by inner_lock of the proc that
291 * struct binder_ref_data - binder_ref counts and id
292 * @debug_id: unique ID for the ref
297 * Structure to hold ref count and ref id information. Since
310 * struct binder_ref - struct to track references on nodes
311 * @data: binder_ref_data containing id, handle, and current refcounts
312 * @rb_node_desc: node for lookup by @data.desc in proc's rb_tree
313 * @rb_node_node: node for lookup by @node in proc's rb_tree
314 * @node_entry: list entry for node->refs list in target node
315 * (protected by @node->lock)
316 * @proc: binder_proc containing ref
318 * ref for deletion in binder_cleanup_ref, a non-NULL
321 * (protected by @node->lock)
323 * (protected by @node->lock)
326 * structure is unsafe to access without holding @proc->outer_lock.
330 /* node + proc => ref (transaction) */
331 /* desc + proc => ref (transaction, inc/dec ref) */
332 /* node => refs + procs (proc exit) */
337 struct binder_proc *proc; member
344 * struct binder_proc - binder process bookkeeping
346 * @threads: rbtree of binder_threads in this proc
349 * this proc ordered by node->ptr
351 * @refs_by_desc: rbtree of refs ordered by ref->desc
353 * @refs_by_node: rbtree of refs ordered by ref->node
355 * @waiting_threads: threads currently waiting for proc work
390 * @stats: per-process binder statistics
404 * @tmp_ref: temporary reference to indicate proc is in use
410 * @context: binder_context for this proc
415 * @binderfs_entry: process-specific binderfs log file
459 * struct binder_thread - binder thread bookkeeping
460 * @proc: binder process for this thread
462 * @rb_node: element for proc->threads rbtree
463 * (protected by @proc->inner_lock)
464 * @waiting_thread_node: element for @proc->waiting_threads list
465 * (protected by @proc->inner_lock)
472 * @transaction_stack: stack of in-progress transactions for this thread
473 * (protected by @proc->inner_lock)
475 * (protected by @proc->inner_lock)
477 * (protected by @proc->inner_lock)
481 * (protected by @proc->inner_lock)
483 * (protected by @proc->inner_lock)
485 * @stats: per-thread statistics
488 * (atomic since @proc->inner_lock cannot
492 * (protected by @proc->inner_lock)
497 struct binder_proc *proc; member
516 * struct binder_txn_fd_fixup - transaction fd fixup list element
566 * struct binder_object - union of flat binder object types
573 * Used for type-independent object copies