Home
last modified time | relevance | path

Searched refs:smr_serialized_load (Results 1 – 10 of 10) sorted by relevance

/xnu-12377.1.9/osfmk/kern/ !
H A Dsmr.h136 #define smr_serialized_load(ptr) \ macro
362 __container_of_safe(smr_serialized_load(&(head)->first), type_t, link)
372 __container_of_safe(smr_serialized_load(&(elem)->field.next), \
383 for (__auto_type __it = smr_serialized_load(&(head)->first); \
385 __it = smr_serialized_load(&__it->next))
398 for (__auto_type __it = smr_serialized_load(&(head)->first), \
401 ((__next_it = smr_serialized_load(&__it->next)), 1); \
416 smr_serialized_load(&__head->first), __smrq_lastp(__head)); \
446 smr_serialized_load(&__head->first), __smrq_lastp(__head)); \
523 ((it) = __container_of_safe(smr_serialized_load(__prev_##it), \
[all …]
H A Dbtlog.c354 uint32_t param = smr_serialized_load(&btl->btl_param); in __btlib_rehash_needed()
454 while ((ref = smr_serialized_load(prev)) != BTREF_NULL) { in __btlib_split_step()
485 ref = smr_serialized_load(&bthp[i]->bth_array[j]); in __btlib_validate()
510 param_old = smr_serialized_load(&btl->btl_param); in __btlib_rehash_and_lock()
702 prev = __btlib_head(btl, smr_serialized_load(&btl->btl_param), hash); in __btlib_insert()
703 while ((ref = smr_serialized_load(prev)) != BTREF_NULL) { in __btlib_insert()
748 smr_serialized_store(&bts->bts_next, smr_serialized_load(prev)); in __btlib_insert()
767 uint32_t param = smr_serialized_load(&btl->btl_param); in __btlib_remove_locked()
782 btref_t tmp = smr_serialized_load(prev); in __btlib_remove_locked()
793 smr_serialized_store(prev, smr_serialized_load(&bts->bts_next)); in __btlib_remove_locked()
H A Dsmr.c2347 while ((link = smr_serialized_load(prev))) {
2504 link = smr_serialized_load(&oldarray[i].first); in __smr_hash_grow_and_unlock()
2510 while ((next = smr_serialized_load(&link->next)) && in __smr_hash_grow_and_unlock()
2565 link = smr_serialized_load(&oldarray[i].first); in __smr_hash_grow_and_unlock()
2584 link = smr_serialized_load(&link->next); in __smr_hash_grow_and_unlock()
2586 while ((next = smr_serialized_load(&link->next)) && in __smr_hash_grow_and_unlock()
2807 other = smr_serialized_load(&other->next); in __smr_shash_entered_get_or_insert()
2866 next = smr_serialized_load(prev); in __smr_shash_entered_mut_begin()
2884 next = smr_serialized_load(&link->next); in __smr_shash_entered_mut_erase()
2911 next = smr_serialized_load(&old_link->next); in __smr_shash_entered_mut_replace()
[all …]
H A Dsmr_hash.h1026 it->link = smr_serialized_load(&it->link->next); in smr_hash_iter_serialized_erase()
1035 it->link = smr_serialized_load(it->prev); in smr_hash_iter_serialized_erase()
1673 for (struct smrq_slink *link = smr_serialized_load(&head->first); in __smr_hash_serialized_find()
1674 link; link = smr_serialized_load(&link->next)) { in __smr_hash_serialized_find()
/xnu-12377.1.9/osfmk/ipc/ !
H A Dipc_space.h207 table = smr_serialized_load(&space->is_table); in is_active_table()
H A Dipc_space.c413 table = smr_serialized_load(&space->is_table); in ipc_space_terminate()
H A Dipc_entry.c825 assert(smr_serialized_load(&space->is_table) == otable); in ipc_entry_grow_table()
/xnu-12377.1.9/bsd/kern/ !
H A Dkern_proc.c1148 cred = smr_serialized_load(&proc_ro->p_ucred); in proc_free()
1902 kauth_cred_t cred = smr_serialized_load(&proc_get_ro(p)->p_ucred); in proc_ucred_unsafe()
2605 assert(pgrp == smr_serialized_load(&parent->p_pgrp)); in pgrp_add_member()
2916 pg = smr_serialized_load(&p->p_pgrp); in pgrp_leave_locked()
2931 pgrp = pg_ref(smr_serialized_load(&parent->p_pgrp)); in pgrp_enter_locked()
4358 oldpg = smr_serialized_load(&p->p_pgrp); in pgrp_replace()
4412 struct pgrp *pgrp = smr_serialized_load(&old_proc->p_pgrp); in session_replace_leader()
4473 pgrp = pg_ref(smr_serialized_load(&p->p_pgrp)); in proc_pgrp()
H A Dkern_resource.c1443 rlim = smr_serialized_load(&p->p_limit)->pl_rlimit[which]; in dosetrlimit()
1968 plim = smr_serialized_load(&parent->p_limit); in proc_limitfork()
1981 plimit = smr_serialized_load(&p->p_limit); in proc_limitdrop()
2039 cur_plim = smr_serialized_load(&p->p_limit);
H A Dproc_info.c429 struct pgrp *pg = smr_serialized_load(&p->p_pgrp); in proc_listpids()