Lines Matching +full:proc +full:- +full:id
1 /* SPDX-License-Identifier: GPL-2.0 */
26 * struct binder_device - information about a binder device node
43 * binderfs_mount_opts - mount options for binderfs
53 * binderfs_info - information about a binderfs mount
56 * binder-control device.
63 * @proc_log_dir: Pointer to the directory dentry containing process-specific
121 (entry)->name; \
143 * struct binder_work - work enqueued on a worklist
147 * There are separate work lists for proc, thread, and node (async).
171 * struct binder_node - binder node bookkeeping
172 * @debug_id: unique ID for debugging
176 * (protected by @proc->inner_lock)
177 * @rb_node: element for proc->nodes tree
178 * (protected by @proc->inner_lock)
181 * @proc: binder_proc that owns this node
187 * (protected by @proc->inner_lock if @proc
190 * (protected by @proc->inner_lock if @proc
193 * (protected by @proc->inner_lock if @proc
196 * (protected by @proc->inner_lock while @proc
198 * if @proc is NULL. During inc/dec and node release
200 * as the node dies and @proc becomes NULL)
206 * (protected by @proc->inner_lock if @proc
209 * (protected by @proc->inner_lock if @proc
212 * (protected by @proc->inner_lock if @proc
215 * (protected by @proc->inner_lock if @proc
226 * (protected by @proc->inner_lock)
238 struct binder_proc *proc; member
249 * proc inner_lock
271 * (protected by inner_lock of the proc that
279 * struct binder_ref_data - binder_ref counts and id
280 * @debug_id: unique ID for the ref
285 * Structure to hold ref count and ref id information. Since
298 * struct binder_ref - struct to track references on nodes
299 * @data: binder_ref_data containing id, handle, and current refcounts
300 * @rb_node_desc: node for lookup by @data.desc in proc's rb_tree
301 * @rb_node_node: node for lookup by @node in proc's rb_tree
302 * @node_entry: list entry for node->refs list in target node
303 * (protected by @node->lock)
304 * @proc: binder_proc containing ref
306 * ref for deletion in binder_cleanup_ref, a non-NULL
309 * (protected by @node->lock)
312 * structure is unsafe to access without holding @proc->outer_lock.
316 /* node + proc => ref (transaction) */
317 /* desc + proc => ref (transaction, inc/dec ref) */
318 /* node => refs + procs (proc exit) */
323 struct binder_proc *proc; member
329 * struct binder_proc - binder process bookkeeping
331 * @threads: rbtree of binder_threads in this proc
334 * this proc ordered by node->ptr
336 * @refs_by_desc: rbtree of refs ordered by ref->desc
338 * @refs_by_node: rbtree of refs ordered by ref->node
340 * @waiting_threads: threads currently waiting for proc work
373 * @stats: per-process binder statistics
385 * @tmp_ref: temporary reference to indicate proc is in use
391 * @context: binder_context for this proc
396 * @binderfs_entry: process-specific binderfs log file
439 * struct binder_thread - binder thread bookkeeping
440 * @proc: binder process for this thread
442 * @rb_node: element for proc->threads rbtree
443 * (protected by @proc->inner_lock)
444 * @waiting_thread_node: element for @proc->waiting_threads list
445 * (protected by @proc->inner_lock)
452 * @transaction_stack: stack of in-progress transactions for this thread
453 * (protected by @proc->inner_lock)
455 * (protected by @proc->inner_lock)
457 * (protected by @proc->inner_lock)
461 * (protected by @proc->inner_lock)
463 * (protected by @proc->inner_lock)
465 * @stats: per-thread statistics
468 * (atomic since @proc->inner_lock cannot
472 * (protected by @proc->inner_lock)
477 struct binder_proc *proc; member
496 * struct binder_txn_fd_fixup - transaction fd fixup list element
546 * struct binder_object - union of flat binder object types
553 * Used for type-independent object copies