Searched refs:targetp (Results 1 - 25 of 53) sorted by relevance

123

/freebsd-9.3-release/sys/kern/
H A Dp1003_1b.c114 struct proc *targetp;
123 targetp = td->td_proc;
125 PROC_LOCK(targetp);
127 targetp = pfind(uap->pid);
128 if (targetp == NULL)
130 targettd = FIRST_THREAD_IN_PROC(targetp);
133 e = p_cansched(td, targetp);
138 PROC_UNLOCK(targetp);
148 struct proc *targetp;
151 targetp
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Dtaskpool.h87 isc_taskpool_gettask(isc_taskpool_t *pool, isc_task_t **targetp);
102 isc_taskpool_t **targetp);
109 * 'targetp'.
112 * 'sourcep' is attached to 'targetp' without any other action being taken.
119 * \li 'targetp' is not NULL and '*source' is NULL
123 * \li On success, '*targetp' points to a valid task pool.
H A Dpool.h107 isc_pool_expand(isc_pool_t **sourcep, unsigned int count, isc_pool_t **targetp);
114 * 'targetp'.
117 * 'sourcep' is attached to 'targetp' without any other action being taken.
124 * \li 'targetp' is not NULL and '*source' is NULL
128 * \li On success, '*targetp' points to a valid task pool.
/freebsd-9.3-release/contrib/ntp/lib/isc/include/isc/
H A Dtaskpool.h87 isc_taskpool_gettask(isc_taskpool_t *pool, isc_task_t **targetp);
102 isc_taskpool_t **targetp);
109 * 'targetp'.
112 * 'sourcep' is attached to 'targetp' without any other action being taken.
119 * \li 'targetp' is not NULL and '*source' is NULL
123 * \li On success, '*targetp' points to a valid task pool.
H A Dtask.h121 void (*attach)(isc_task_t *source, isc_task_t **targetp);
212 isc_task_attach(isc_task_t *source, isc_task_t **targetp);
214 * Attach *targetp to source.
220 *\li 'targetp' points to a NULL isc_task_t *.
224 *\li *targetp is attached to source.
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dtaskpool.c104 isc_taskpool_gettask(isc_taskpool_t *pool, isc_task_t **targetp) { argument
107 isc_task_attach(pool->tasks[i % pool->ntasks], targetp);
118 isc_taskpool_t **targetp)
124 REQUIRE(targetp != NULL && *targetp == NULL);
159 *targetp = pool;
117 isc_taskpool_expand(isc_taskpool_t **sourcep, unsigned int size, isc_taskpool_t **targetp) argument
H A Dpool.c120 isc_pool_t **targetp)
126 REQUIRE(targetp != NULL && *targetp == NULL);
162 *targetp = pool;
119 isc_pool_expand(isc_pool_t **sourcep, unsigned int count, isc_pool_t **targetp) argument
H A Dmem_api.c91 isc_mem_attach(isc_mem_t *source, isc_mem_t **targetp) { argument
93 REQUIRE(targetp != NULL && *targetp == NULL);
95 source->methods->attach(source, targetp);
97 ENSURE(*targetp == source);
H A Dtask_api.c127 isc_task_attach(isc_task_t *source, isc_task_t **targetp) { argument
129 REQUIRE(targetp != NULL && *targetp == NULL);
131 source->methods->attach(source, targetp);
133 ENSURE(*targetp == source);
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dtaskpool.c102 isc_taskpool_gettask(isc_taskpool_t *pool, isc_task_t **targetp) { argument
105 isc_task_attach(pool->tasks[i % pool->ntasks], targetp);
116 isc_taskpool_t **targetp)
122 REQUIRE(targetp != NULL && *targetp == NULL);
157 *targetp = pool;
115 isc_taskpool_expand(isc_taskpool_t **sourcep, unsigned int size, isc_taskpool_t **targetp) argument
H A Dmem_api.c91 isc_mem_attach(isc_mem_t *source, isc_mem_t **targetp) { argument
93 REQUIRE(targetp != NULL && *targetp == NULL);
95 source->methods->attach(source, targetp);
97 ENSURE(*targetp == source);
H A Dtask_api.c127 isc_task_attach(isc_task_t *source, isc_task_t **targetp) { argument
129 REQUIRE(targetp != NULL && *targetp == NULL);
131 source->methods->attach(source, targetp);
133 ENSURE(*targetp == source);
/freebsd-9.3-release/sys/nfs/
H A Dnfs_lock.c357 struct proc *targetp; local
364 if ((targetp = pfind(ansp->la_msg_ident.pid)) == NULL)
372 if (targetp->p_nlminfo == NULL ||
374 (timevalcmp(&targetp->p_nlminfo->pid_start,
376 targetp->p_nlminfo->msg_seq != ansp->la_msg_ident.msg_seq))) {
377 PROC_UNLOCK(targetp);
381 targetp->p_nlminfo->retcode = ansp->la_errno;
382 targetp->p_nlminfo->set_getlk_pid = ansp->la_set_getlk_pid;
383 targetp->p_nlminfo->getlk_pid = ansp->la_getlk_pid;
385 wakeup(targetp
[all...]
/freebsd-9.3-release/contrib/bind9/bin/named/include/named/
H A Dinterfacemgr.h112 ns_interfacemgr_detach(ns_interfacemgr_t **targetp);
164 ns_interface_detach(ns_interface_t **targetp);
H A Dlwresd.h83 ns_lwdmanager_attach(ns_lwresd_t *source, ns_lwresd_t **targetp);
95 ns_lwreslistener_t **targetp);
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Dacache.h200 dns_acache_attach(dns_acache_t *source, dns_acache_t **targetp);
202 * Attach *targetp to cache.
208 * 'targetp' points to a NULL dns_acache_t *.
212 * *targetp is attached to the 'source' additional cache.
407 dns_acache_attachentry(dns_acacheentry_t *source, dns_acacheentry_t **targetp);
409 * Attach *targetp to the cache entry 'source'.
415 * 'targetp' points to a NULL dns_acacheentry_t *.
419 * *targetp is attached to 'source'.
H A Ddbtable.h76 dns_dbtable_attach(dns_dbtable_t *source, dns_dbtable_t **targetp);
78 * Attach '*targetp' to 'source'.
84 *\li 'targetp' points to a NULL dns_dbtable_t *.
88 *\li *targetp is attached to source.
H A Dssu.h74 dns_ssutable_attach(dns_ssutable_t *source, dns_ssutable_t **targetp);
76 * Attach '*targetp' to 'source'.
80 *\li 'targetp' points to a NULL dns_ssutable_t *.
83 *\li *targetp is attached to source.
H A Ddb.h77 void (*attach)(dns_db_t *source, dns_db_t **targetp);
90 dns_dbversion_t **targetp);
112 dns_dbnode_t **targetp);
114 dns_dbnode_t **targetp);
154 dns_dbnode_t **targetp);
318 dns_db_attach(dns_db_t *source, dns_db_t **targetp);
320 * Attach *targetp to source.
326 * \li 'targetp' points to a NULL dns_db_t *.
330 * \li *targetp is attached to source.
623 dns_dbversion_t **targetp);
[all...]
H A Dcache.h114 dns_cache_attach(dns_cache_t *cache, dns_cache_t **targetp);
116 * Attach *targetp to cache.
122 *\li 'targetp' points to a NULL dns_cache_t *.
126 *\li *targetp is attached to cache.
H A Dview.h239 dns_view_attach(dns_view_t *source, dns_view_t **targetp);
241 * Attach '*targetp' to 'source'.
247 *\li 'targetp' points to a NULL dns_view_t *.
251 *\li *targetp is attached to source.
253 *\li While *targetp is attached, the view will not shut down.
286 dns_view_weakattach(dns_view_t *source, dns_view_t **targetp);
288 * Weakly attach '*targetp' to 'source'.
294 *\li 'targetp' points to a NULL dns_view_t *.
298 *\li *targetp is attached to source.
300 * \li While *targetp i
[all...]
H A Dkeytable.h107 dns_keytable_attach(dns_keytable_t *source, dns_keytable_t **targetp);
109 * Attach *targetp to source.
115 *\li 'targetp' points to a NULL dns_keytable_t *.
119 *\li *targetp is attached to source.
H A Drequest.h136 dns_requestmgr_attach(dns_requestmgr_t *source, dns_requestmgr_t **targetp);
145 *\li 'targetp' to be non NULL and '*targetp' to be NULL.
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Ddb.c159 dns_db_attach(dns_db_t *source, dns_db_t **targetp) { argument
162 * Attach *targetp to source.
166 REQUIRE(targetp != NULL && *targetp == NULL);
168 (source->methods->attach)(source, targetp);
170 ENSURE(*targetp == source);
432 dns_dbversion_t **targetp)
435 * Attach '*targetp' to 'source'.
441 REQUIRE(targetp != NULL && *targetp
431 dns_db_attachversion(dns_db_t *db, dns_dbversion_t *source, dns_dbversion_t **targetp) argument
615 dns_db_attachnode(dns_db_t *db, dns_dbnode_t *source, dns_dbnode_t **targetp) argument
644 dns_db_transfernode(dns_db_t *db, dns_dbnode_t **sourcep, dns_dbnode_t **targetp) argument
[all...]
H A Ddbtable.c137 dns_dbtable_attach(dns_dbtable_t *source, dns_dbtable_t **targetp) { argument
139 REQUIRE(targetp != NULL && *targetp == NULL);
149 *targetp = source;

Completed in 188 milliseconds

123