Home
last modified time | relevance | path

Searched full:idp (Results 1 – 25 of 102) sorted by relevance

12345

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_ident.c60 dt_idcook_sign(dt_node_t *dnp, dt_ident_t *idp, in dt_idcook_sign() argument
63 dt_idsig_t *isp = idp->di_data; in dt_idcook_sign()
69 iskey = idp->di_kind == DT_IDENT_ARRAY || idp->di_kind == DT_IDENT_AGG; in dt_idcook_sign()
84 "passed, %s%d expected\n", prefix, idp->di_name, suffix, in dt_idcook_sign()
100 prefix, idp->di_name, suffix, in dt_idcook_sign()
109 dt_node_type_assign(dnp, idp->di_ctfp, idp->di_type, B_FALSE); in dt_idcook_sign()
118 dt_idcook_assc(dt_node_t *dnp, dt_ident_t *idp, int argc, dt_node_t *args) in dt_idcook_assc() argument
120 if (idp->di_data == NULL) { in dt_idcook_assc()
121 dt_idsig_t *isp = idp->di_data = malloc(sizeof (dt_idsig_t)); in dt_idcook_assc()
136 idp->di_data = NULL; in dt_idcook_assc()
[all …]
H A Ddt_as.c80 dt_countvar(dt_idhash_t *dhp, dt_ident_t *idp, void *data) in dt_countvar() argument
84 if (idp->di_flags & (DT_IDFLG_DIFR | DT_IDFLG_DIFW)) in dt_countvar()
92 dt_copyvar(dt_idhash_t *dhp, dt_ident_t *idp, void *data) in dt_copyvar() argument
99 if (!(idp->di_flags & (DT_IDFLG_DIFR | DT_IDFLG_DIFW))) in dt_copyvar()
103 stroff = dt_strtab_insert(pcb->pcb_strtab, idp->di_name); in dt_copyvar()
111 dvp->dtdv_id = idp->di_id; in dt_copyvar()
114 dvp->dtdv_kind = (idp->di_kind == DT_IDENT_ARRAY) ? in dt_copyvar()
117 if (idp->di_flags & DT_IDFLG_LOCAL) in dt_copyvar()
119 else if (idp->di_flags & DT_IDFLG_TLS) in dt_copyvar()
124 if (idp->di_flags & DT_IDFLG_DIFR) in dt_copyvar()
[all …]
H A Ddt_cg.c93 dt_cg_xsetx(dt_irlist_t *dlp, dt_ident_t *idp, uint_t lbl, int reg, uint64_t x) in dt_cg_xsetx() argument
95 int flag = idp != NULL ? DT_INT_PRIVATE : DT_INT_SHARED; in dt_cg_xsetx()
107 if (idp != NULL) in dt_cg_xsetx()
108 dlp->dl_last->di_extern = idp; in dt_cg_xsetx()
541 dt_cg_arglist(dt_ident_t *idp, dt_node_t *args, in dt_cg_arglist() argument
544 const dt_idsig_t *isp = idp->di_data; in dt_cg_arglist()
628 dt_cg_stvar(const dt_ident_t *idp) in dt_cg_stvar() argument
633 uint_t i = (((idp->di_flags & DT_IDFLG_LOCAL) != 0) << 1) | in dt_cg_stvar()
634 ((idp->di_flags & DT_IDFLG_TLS) != 0); in dt_cg_stvar()
636 return (idp->di_kind == DT_IDENT_ARRAY ? aops[i] : sops[i]); in dt_cg_stvar()
[all …]
H A Ddt_parser.c790 dt_ident_t *idp; in dt_node_resolve() local
799 idp = dt_ident_resolve(dnp->dn_ident); in dt_node_resolve()
800 return (idp->di_kind == idkind ? idp : NULL); in dt_node_resolve()
804 idp = dt_ident_resolve(dnp->dn_ident); in dt_node_resolve()
805 return (idp->di_kind == idkind ? idp : NULL); in dt_node_resolve()
1331 dt_ident_t *idp; in dt_node_ident() local
1343 if ((idp = dt_idstack_lookup(&yypcb->pcb_globals, name)) != NULL && in dt_node_ident()
1344 (idp->di_flags & DT_IDFLG_INLINE)) { in dt_node_ident()
1345 dt_idnode_t *inp = idp->di_iarg; in dt_node_ident()
1577 dt_ident_t *idp; in dt_node_decl() local
[all …]
H A Ddt_pragma.c54 dt_pragma_apply(dt_idhash_t *dhp, dt_ident_t *idp) in dt_pragma_apply() argument
62 while ((pdp = dt_idhash_lookup(php, idp->di_name)) != NULL) { in dt_pragma_apply()
65 idp->di_attr = pdp->di_attr; in dt_pragma_apply()
68 idp->di_vers = pdp->di_vers; in dt_pragma_apply()
88 dt_ident_t *idp; in dt_pragma_attributes() local
132 } else if ((idp = dt_idstack_lookup( in dt_pragma_attributes()
135 if (idp->di_gen != dtp->dt_gen) { in dt_pragma_attributes()
140 idp->di_attr = attr; in dt_pragma_attributes()
148 idp = dt_idhash_insert(yypcb->pcb_pragmas, name, DT_IDENT_PRAGAT, 0, 0, in dt_pragma_attributes()
151 if (idp == NULL) in dt_pragma_attributes()
[all …]
H A Ddt_module.c308 GElf_Sym *symp, uint_t *idp) in dt_module_symname32() argument
327 if (idp != NULL) in dt_module_symname32()
328 *idp = dsp->ds_symid; in dt_module_symname32()
338 GElf_Sym *symp, uint_t *idp) in dt_module_symname64() argument
357 if (idp != NULL) in dt_module_symname64()
358 *idp = dsp->ds_symid; in dt_module_symname64()
368 GElf_Sym *symp, uint_t *idp) in dt_module_symaddr32() argument
400 if (idp != NULL) in dt_module_symaddr32()
401 *idp = (uint_t)(sym - symtab); in dt_module_symaddr32()
410 GElf_Sym *symp, uint_t *idp) in dt_module_symaddr64() argument
[all …]
H A Ddt_provider.c244 dt_ident_t *idp; in dt_probe_discover() local
305 idp = dt_ident_create(name, DT_IDENT_PROBE, in dt_probe_discover()
309 if (idp == NULL) { in dt_probe_discover()
314 if ((prp = dt_probe_create(dtp, idp, 2, in dt_probe_discover()
316 dt_ident_destroy(idp); in dt_probe_discover()
380 dt_ident_t *idp; in dt_probe_lookup() local
395 if ((idp = dt_idhash_lookup(pvp->pv_probes, key)) != NULL) in dt_probe_lookup()
396 return (idp->di_data); in dt_probe_lookup()
414 dt_probe_create(dtrace_hdl_t *dtp, dt_ident_t *idp, int protoc, in dt_probe_create() argument
422 assert(idp->di_kind == DT_IDENT_PROBE); in dt_probe_create()
[all …]
H A Ddt_cc.c125 dt_idreset(dt_idhash_t *dhp, dt_ident_t *idp, void *ignored) in dt_idreset() argument
127 idp->di_flags &= ~(DT_IDFLG_REF | DT_IDFLG_MOD | in dt_idreset()
134 dt_idpragma(dt_idhash_t *dhp, dt_ident_t *idp, void *ignored) in dt_idpragma() argument
136 yylineno = idp->di_lineno; in dt_idpragma()
137 xyerror(D_PRAGMA_UNUSED, "unused #pragma %s\n", (char *)idp->di_iarg); in dt_idpragma()
1691 dt_ident_t *idp; in dt_setcontext() local
1752 if ((idp = dt_idhash_lookup(dtp->dt_globals, "probeprov")) != NULL) in dt_setcontext()
1753 idp->di_attr = pap->dtpa_provider; in dt_setcontext()
1754 if ((idp = dt_idhash_lookup(dtp->dt_globals, "probemod")) != NULL) in dt_setcontext()
1755 idp->di_attr = pap->dtpa_mod; in dt_setcontext()
[all …]
H A Ddt_pcb.c93 dt_pcb_pop_ident(dt_idhash_t *dhp, dt_ident_t *idp, void *arg) in dt_pcb_pop_ident() argument
97 if (idp->di_gen == dtp->dt_gen) in dt_pcb_pop_ident()
98 dt_idhash_delete(dhp, idp); in dt_pcb_pop_ident()
H A Ddt_lex.l320 dt_ident_t *idp = dt_idhash_lookup(
325 if (idp == NULL) {
334 (void) snprintf(s, sizeof (s), "%u", idp->di_id);
342 dt_ident_t *idp = dt_idhash_lookup(
345 if (idp == NULL) {
354 yylval.l_int = (intmax_t)(int)idp->di_id;
766 dt_ident_t *idp;
834 idp = dt_idhash_insert(yypcb->pcb_idents, s, DT_IDENT_SCALAR, 0,
837 if (idp == NULL)
/freebsd/sys/fs/cd9660/
H A Dcd9660_vnops.c70 static int iso_uiodir(struct isoreaddir *idp, struct dirent *dp, off_t off);
71 static int iso_shipdir(struct isoreaddir *idp);
348 iso_uiodir(struct isoreaddir *idp, struct dirent *dp, off_t off) in iso_uiodir() argument
355 if (idp->uio->uio_resid < dp->d_reclen) { in iso_uiodir()
356 idp->eofflag = 0; in iso_uiodir()
360 if (idp->cookies) { in iso_uiodir()
361 if (idp->ncookies <= 0) { in iso_uiodir()
362 idp->eofflag = 0; in iso_uiodir()
366 *idp->cookies++ = off; in iso_uiodir()
367 --idp->ncookies; in iso_uiodir()
[all …]
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Didr.h81 void *idr_find(struct idr *idp, int id);
82 void *idr_get_next(struct idr *idp, int *nextid);
83 bool idr_is_empty(struct idr *idp);
84 int idr_pre_get(struct idr *idp, gfp_t gfp_mask);
85 int idr_get_new(struct idr *idp, void *ptr, int *id);
86 int idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id);
87 void *idr_replace(struct idr *idp, void *ptr, int id);
88 void *idr_remove(struct idr *idp, int id);
89 void idr_remove_all(struct idr *idp);
90 void idr_destroy(struct idr *idp);
[all …]
/freebsd/crypto/openssl/crypto/x509/
H A Dx_crl.c20 static int setup_idp(X509_CRL *crl, ISSUING_DIST_POINT *idp);
173 ISSUING_DIST_POINT_free(crl->idp); in crl_cb()
180 crl->idp = NULL; in crl_cb()
195 crl->idp = X509_CRL_get_ext_d2i(crl, in crl_cb()
198 if (crl->idp != NULL) { in crl_cb()
199 if (!setup_idp(crl, crl->idp)) in crl_cb()
228 * this in a flag. We only currently handle IDP so anything else in crl_cb()
242 /* We handle IDP and deltas */ in crl_cb()
269 ISSUING_DIST_POINT_free(crl->idp); in crl_cb()
287 /* Convert IDP into a more convenient form */
[all …]
H A Dv3_crld.c376 ISSUING_DIST_POINT *idp = NULL; in v2i_idp() local
380 idp = ISSUING_DIST_POINT_new(); in v2i_idp()
381 if (idp == NULL) { in v2i_idp()
389 ret = set_dist_point_name(&idp->distpoint, ctx, cnf); in v2i_idp()
395 if (!X509V3_get_value_bool(cnf, &idp->onlyuser)) in v2i_idp()
398 if (!X509V3_get_value_bool(cnf, &idp->onlyCA)) in v2i_idp()
401 if (!X509V3_get_value_bool(cnf, &idp->onlyattr)) in v2i_idp()
404 if (!X509V3_get_value_bool(cnf, &idp->indirectCRL)) in v2i_idp()
407 if (!set_reasons(&idp->onlysomereasons, val)) in v2i_idp()
415 return idp; in v2i_idp()
[all …]
/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Diidesc.c159 iidesc_t *idp = arg; in iidesc_free() local
160 if (idp->ii_name) in iidesc_free()
161 free(idp->ii_name); in iidesc_free()
162 if (idp->ii_nargs) in iidesc_free()
163 free(idp->ii_args); in iidesc_free()
164 if (idp->ii_owner) in iidesc_free()
165 free(idp->ii_owner); in iidesc_free()
166 free(idp); in iidesc_free()
H A Dctf.c165 write_objects(iidesc_t *idp, ctf_buf_t *b) in write_objects() argument
167 uint_t id = (idp ? idp->ii_dtype->t_id : 0); in write_objects()
175 debug(3, "Wrote object %s (%d)\n", (idp ? idp->ii_name : "(null)"), id); in write_objects()
179 write_functions(iidesc_t *idp, ctf_buf_t *b) in write_functions() argument
186 if (!idp) { in write_functions()
194 nargs = idp->ii_nargs + (idp->ii_vargs != 0); in write_functions()
198 idp->ii_name, nargs, CTF_V3_MAX_VLEN); in write_functions()
202 fdata[1] = idp->ii_dtype->t_id; in write_functions()
211 for (i = 0; i < idp->ii_nargs; i++) { in write_functions()
212 id = idp->ii_args[i]->t_id; in write_functions()
[all …]
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_idr.c396 idr_free_list_get(struct idr *idp) in idr_free_list_get() argument
400 if ((il = idp->free) != NULL) { in idr_free_list_get()
401 idp->free = il->ary[0]; in idr_free_list_get()
408 idr_get(struct idr *idp) in idr_get() argument
412 if ((il = idr_free_list_get(idp)) != NULL) { in idr_get()
425 * Could be implemented as get_new_above(idr, ptr, 0, idp) but written
429 idr_get_new_locked(struct idr *idr, void *ptr, int *idp) in idr_get_new_locked() argument
485 *idp = id; in idr_get_new_locked()
505 idr_get_new(struct idr *idr, void *ptr, int *idp) in idr_get_new() argument
510 retval = idr_get_new_locked(idr, ptr, idp); in idr_get_new()
[all …]
/freebsd/share/doc/psd/21.ipc/
H A Dspell.ok43 IDP
200 idp
201 idp.h
202 idp.idp
H A D5.t1188 The contents of a SPP header (minus the IDP header) are:
1267 Output is handled somewhat differently in the IDP world.
1268 The header of an IDP-level packet looks like:
1271 struct idp {
1280 The primary field of interest in an IDP header is the \fIpacket type\fP
1292 automatically set to NSPROTO_SPP; for IDP packets,
1301 #include <netns/idp.h>
1304 struct idp proto_idp; /* prototype header */
1317 SO_HEADERS_ON_OUTPUT is turned on for an IDP socket, the socket
1333 all IDP applications , using SO_DEFAULT_HEADERS is easier and
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dsc7280-idp.dts3 * sc7280 IDP board device tree source
11 #include "sc7280-idp.dtsi"
15 model = "Qualcomm Technologies, Inc. sc7280 IDP SKU1 platform";
16 compatible = "qcom,sc7280-idp", "google,senor", "qcom,sc7280";
H A Dsc7280-idp2.dts10 #include "sc7280-idp.dtsi"
11 #include "sc7280-idp-ec-h1.dtsi"
14 model = "Qualcomm Technologies, Inc. sc7280 IDP SKU2 platform";
H A Dsc7280-crd.dts10 #include "sc7280-idp.dtsi"
11 #include "sc7280-idp-ec-h1.dtsi"
/freebsd/usr.sbin/makefs/zfs/
H A Dobjset.c196 uint16_t bonuslen, uint64_t *idp) in objset_dnode_bonus_alloc() argument
209 *idp = os->dnodecount++; in objset_dnode_bonus_alloc()
217 objset_dnode_alloc(zfs_objset_t *os, uint8_t type, uint64_t *idp) in objset_dnode_alloc() argument
219 return (objset_dnode_bonus_alloc(os, type, DMU_OT_NONE, 0, idp)); in objset_dnode_alloc()
/freebsd/sys/sys/
H A D_semaphore.h45 int ksem_init(semid_t *idp, unsigned int value);
46 int ksem_open(semid_t *idp, const char *name, int oflag, mode_t mode,
/freebsd/lib/libc/net/
H A Dprotocols28 xns-idp 22 XNS-IDP # Xerox NS IDP

12345