Lines Matching +full:proc +full:- +full:id
1 /* SPDX-License-Identifier: GPL-2.0 */
26 * struct binder_device - information about a binder device node
42 * binderfs_mount_opts - mount options for binderfs
52 * binderfs_info - information about a binderfs mount
55 * binder-control device.
62 * @proc_log_dir: Pointer to the directory dentry containing process-specific
120 (entry)->name; \
143 * struct binder_work - work enqueued on a worklist
147 * There are separate work lists for proc, thread, and node (async).
173 * struct binder_node - binder node bookkeeping
174 * @debug_id: unique ID for debugging
178 * (protected by @proc->inner_lock)
179 * @rb_node: element for proc->nodes tree
180 * (protected by @proc->inner_lock)
183 * @proc: binder_proc that owns this node
189 * (protected by @proc->inner_lock if @proc
192 * (protected by @proc->inner_lock if @proc
195 * (protected by @proc->inner_lock if @proc
198 * (protected by @proc->inner_lock while @proc
200 * if @proc is NULL. During inc/dec and node release
202 * as the node dies and @proc becomes NULL)
208 * (protected by @proc->inner_lock if @proc
211 * (protected by @proc->inner_lock if @proc
214 * (protected by @proc->inner_lock if @proc
217 * (protected by @proc->inner_lock if @proc
228 * (protected by @proc->inner_lock)
240 struct binder_proc *proc; member
251 * proc inner_lock
273 * (protected by inner_lock of the proc that
289 * struct binder_ref_data - binder_ref counts and id
290 * @debug_id: unique ID for the ref
295 * Structure to hold ref count and ref id information. Since
308 * struct binder_ref - struct to track references on nodes
309 * @data: binder_ref_data containing id, handle, and current refcounts
310 * @rb_node_desc: node for lookup by @data.desc in proc's rb_tree
311 * @rb_node_node: node for lookup by @node in proc's rb_tree
312 * @node_entry: list entry for node->refs list in target node
313 * (protected by @node->lock)
314 * @proc: binder_proc containing ref
316 * ref for deletion in binder_cleanup_ref, a non-NULL
319 * (protected by @node->lock)
321 * (protected by @node->lock)
324 * structure is unsafe to access without holding @proc->outer_lock.
328 /* node + proc => ref (transaction) */
329 /* desc + proc => ref (transaction, inc/dec ref) */
330 /* node => refs + procs (proc exit) */
335 struct binder_proc *proc; member
342 * struct binder_proc - binder process bookkeeping
344 * @threads: rbtree of binder_threads in this proc
347 * this proc ordered by node->ptr
349 * @refs_by_desc: rbtree of refs ordered by ref->desc
351 * @refs_by_node: rbtree of refs ordered by ref->node
353 * @waiting_threads: threads currently waiting for proc work
388 * @stats: per-process binder statistics
402 * @tmp_ref: temporary reference to indicate proc is in use
408 * @context: binder_context for this proc
413 * @binderfs_entry: process-specific binderfs log file
457 * struct binder_thread - binder thread bookkeeping
458 * @proc: binder process for this thread
460 * @rb_node: element for proc->threads rbtree
461 * (protected by @proc->inner_lock)
462 * @waiting_thread_node: element for @proc->waiting_threads list
463 * (protected by @proc->inner_lock)
470 * @transaction_stack: stack of in-progress transactions for this thread
471 * (protected by @proc->inner_lock)
473 * (protected by @proc->inner_lock)
475 * (protected by @proc->inner_lock)
479 * (protected by @proc->inner_lock)
481 * (protected by @proc->inner_lock)
483 * @stats: per-thread statistics
486 * (atomic since @proc->inner_lock cannot
490 * (protected by @proc->inner_lock)
495 struct binder_proc *proc; member
514 * struct binder_txn_fd_fixup - transaction fd fixup list element
564 * struct binder_object - union of flat binder object types
571 * Used for type-independent object copies