| /netbsd/src/external/bsd/pkg_install/dist/delete/ |
| D | pkg_delete.c | 71 lpkg_t *lpp; in add_by_filename() local 81 lpp = alloc_lpkg(s); in add_by_filename() 82 TAILQ_INSERT_TAIL(pkgs, lpp, lp_link); in add_by_filename() 111 lpkg_t *lpp; in add_by_pkgname() local 134 lpp = alloc_lpkg(pkg); in add_by_pkgname() 135 TAILQ_INSERT_TAIL(pkgs, lpp, lp_link); in add_by_pkgname() 168 lpkg_t *lpp; in process_required_by() local 190 TAILQ_FOREACH(lpp, sorted_pkgs, lp_link) { in process_required_by() 191 if (strcmp(lpp->lp_name, line) == 0) in process_required_by() 194 if (lpp != NULL) { in process_required_by() [all …]
|
| /netbsd/src/external/bsd/pkg_install/dist/lib/ |
| D | lpkg.c | 47 lpkg_t *lpp; in alloc_lpkg() local 49 lpp = xmalloc(sizeof(*lpp)); in alloc_lpkg() 50 lpp->lp_name = xstrdup(pkgname); in alloc_lpkg() 51 return (lpp); in alloc_lpkg() 55 free_lpkg(lpkg_t *lpp) in free_lpkg() argument 57 free(lpp->lp_name); in free_lpkg() 58 free(lpp); in free_lpkg() 64 lpkg_t *lpp; in find_on_queue() local 66 for (lpp = TAILQ_FIRST(qp); lpp; lpp = TAILQ_NEXT(lpp, lp_link)) in find_on_queue() 67 if (!strcmp(name, lpp->lp_name)) in find_on_queue() [all …]
|
| D | iterate.c | 300 lpkg_t *lpp; in match_and_add() local 305 lpp = alloc_lpkg(pkg); in match_and_add() 306 TAILQ_INSERT_TAIL(arg->pkghead, lpp, lp_link); in match_and_add()
|
| /netbsd/src/sys/compat/linux/common/ |
| D | linux_ipc.c | 92 linux_to_bsd_ipc_perm(struct linux_ipc_perm *lpp, struct ipc_perm *bpp) in linux_to_bsd_ipc_perm() argument 95 bpp->_key = lpp->l_key; in linux_to_bsd_ipc_perm() 96 bpp->uid = lpp->l_uid; in linux_to_bsd_ipc_perm() 97 bpp->gid = lpp->l_gid; in linux_to_bsd_ipc_perm() 98 bpp->cuid = lpp->l_cuid; in linux_to_bsd_ipc_perm() 99 bpp->cgid = lpp->l_cgid; in linux_to_bsd_ipc_perm() 100 bpp->mode = lpp->l_mode; in linux_to_bsd_ipc_perm() 101 bpp->_seq = lpp->l_seq; in linux_to_bsd_ipc_perm() 105 linux_to_bsd_ipc64_perm(struct linux_ipc64_perm *lpp, struct ipc_perm *bpp) in linux_to_bsd_ipc64_perm() argument 107 bpp->_key = lpp->l_key; in linux_to_bsd_ipc64_perm() [all …]
|
| /netbsd/src/sys/compat/linux32/common/ |
| D | linux32_ipccall.c | 164 bsd_to_linux32_ipc_perm(struct ipc_perm *bpp, struct linux32_ipc_perm *lpp) in bsd_to_linux32_ipc_perm() argument 167 memset(lpp, 0, sizeof *lpp); in bsd_to_linux32_ipc_perm() 168 lpp->l_key = bpp->_key; in bsd_to_linux32_ipc_perm() 169 lpp->l_uid = bpp->uid; in bsd_to_linux32_ipc_perm() 170 lpp->l_gid = bpp->gid; in bsd_to_linux32_ipc_perm() 171 lpp->l_cuid = bpp->cuid; in bsd_to_linux32_ipc_perm() 172 lpp->l_cgid = bpp->cgid; in bsd_to_linux32_ipc_perm() 173 lpp->l_mode = bpp->mode; in bsd_to_linux32_ipc_perm() 174 lpp->l_seq = bpp->_seq; in bsd_to_linux32_ipc_perm() 178 linux32_to_bsd_ipc_perm(struct linux32_ipc_perm *lpp, struct ipc_perm *bpp) in linux32_to_bsd_ipc_perm() argument [all …]
|
| /netbsd/src/sys/arch/sgimips/sgimips/ |
| D | disksubr.c | 227 struct partition *lpp; in disklabel_sgimips_to_bsd() local 251 lpp = &lp->d_partitions[bp]; in disklabel_sgimips_to_bsd() 252 lpp->p_offset = vh->partitions[mp].first; in disklabel_sgimips_to_bsd() 255 lpp->p_offset /= lp->d_secsize / DEV_BSIZE; in disklabel_sgimips_to_bsd() 256 lpp->p_size = vh->partitions[mp].blocks; in disklabel_sgimips_to_bsd() 257 lpp->p_fstype = partition_map[i].bsd_type; in disklabel_sgimips_to_bsd() 258 if (lpp->p_fstype == FS_BSDFFS) { in disklabel_sgimips_to_bsd() 259 lpp->p_fsize = 1024; in disklabel_sgimips_to_bsd() 260 lpp->p_frag = 8; in disklabel_sgimips_to_bsd() 261 lpp->p_cpg = 16; in disklabel_sgimips_to_bsd() [all …]
|
| /netbsd/src/sys/arch/mipsco/mipsco/ |
| D | disksubr.c | 243 struct partition *lpp; in disklabel_mips_to_bsd() local 264 lpp = &lp->d_partitions[bp]; in disklabel_mips_to_bsd() 265 lpp->p_offset = vh->vh_part[mp].pt_offset; in disklabel_mips_to_bsd() 266 lpp->p_size = vh->vh_part[mp].pt_size; in disklabel_mips_to_bsd() 267 lpp->p_fstype = partition_map[i].bsd_type; in disklabel_mips_to_bsd() 268 if (lpp->p_fstype == FS_BSDFFS) { in disklabel_mips_to_bsd() 269 lpp->p_fsize = 1024; in disklabel_mips_to_bsd() 270 lpp->p_frag = 8; in disklabel_mips_to_bsd() 271 lpp->p_cpg = 16; in disklabel_mips_to_bsd() 289 struct partition *lpp; in disklabel_bsd_to_mips() local [all …]
|
| /netbsd/src/external/bsd/pkg_install/dist/info/ |
| D | perform.c | 281 lpkg_t *lpp; in build_full_reqby() local 298 TAILQ_FOREACH(lpp, reqby, lp_link) { in build_full_reqby() 299 if (strlen(lpp->lp_name) + iter != eol) in build_full_reqby() 301 if (memcmp(lpp->lp_name, iter, eol - iter) == 0) in build_full_reqby() 304 if (lpp != NULL) in build_full_reqby() 307 lpp = alloc_lpkg(iter); in build_full_reqby() 311 meta_dep = read_meta_data_from_pkgdb(lpp->lp_name); in build_full_reqby() 317 TAILQ_INSERT_HEAD(reqby, lpp, lp_link); in build_full_reqby() 644 lpkg_t *lpp; in pkg_perform() local 646 while ((lpp = TAILQ_FIRST(pkghead)) != NULL) { in pkg_perform() [all …]
|
| D | main.c | 70 lpkg_t *lpp; in main() local 289 lpp = alloc_lpkg(s); in main() 290 TAILQ_INSERT_TAIL(&pkgs, lpp, lp_link); in main() 315 lpp = alloc_lpkg(*argv); in main() 316 TAILQ_INSERT_TAIL(&pkgs, lpp, lp_link); in main()
|
| D | show.c | 417 lpkg_t *lpp; in show_list() local 422 while ((lpp = TAILQ_FIRST(pkghead)) != NULL) { in show_list() 423 TAILQ_REMOVE(pkghead, lpp, lp_link); in show_list() 424 puts(lpp->lp_name); in show_list() 425 free_lpkg(lpp); in show_list()
|
| /netbsd/src/external/bsd/pkg_install/dist/add/ |
| D | main.c | 194 lpkg_t *lpp; in main() local 197 lpp = alloc_lpkg("-"); in main() 199 lpp = alloc_lpkg(*argv); in main() 201 TAILQ_INSERT_TAIL(&pkgs, lpp, lp_link); in main()
|
| D | perform.c | 1664 lpkg_t *lpp; in pkg_perform() local 1666 while ((lpp = TAILQ_FIRST(pkgs)) != NULL) { in pkg_perform() 1667 if (pkg_do(lpp->lp_name, Automatic, 1)) in pkg_perform() 1669 TAILQ_REMOVE(pkgs, lpp, lp_link); in pkg_perform() 1670 free_lpkg(lpp); in pkg_perform()
|
| /netbsd/src/bin/sh/ |
| D | nodes.c.pat | 147 struct nodelist **lpp; 149 lpp = &start; 151 *lpp = st->block; 154 (*lpp)->n = copynode(lp->n, st); 156 lpp = &(*lpp)->next; 158 *lpp = NULL;
|
| D | expand.c | 1791 struct strlist **lpp; in msort() local 1806 lpp = &list; in msort() 1809 *lpp = p; in msort() 1810 lpp = &p->next; in msort() 1811 if ((p = *lpp) == NULL) { in msort() 1812 *lpp = q; in msort() 1816 *lpp = q; in msort() 1817 lpp = &q->next; in msort() 1818 if ((q = *lpp) == NULL) { in msort() 1819 *lpp = p; in msort()
|
| /netbsd/src/sys/dev/ieee1394/ |
| D | fwphyreg.h | 131 lpp:1, member 158 lpp:1,
|
| /netbsd/src/external/bsd/libbind/dist/nameser/ |
| D | ns_name.c | 522 const u_char **cpp, **lpp, *eob, *msg; in ns_name_pack() local 529 lpp = cpp = NULL; in ns_name_pack() 534 lpp = cpp; /*%< end of list to search */ in ns_name_pack() 568 (const u_char * const *)lpp); in ns_name_pack() 602 *lpp = NULL; in ns_name_pack()
|
| /netbsd/src/lib/libc/nameser/ |
| D | ns_name.c | 533 const u_char **cpp, **lpp, *eob, *msg; in ns_name_pack() local 540 lpp = cpp = NULL; in ns_name_pack() 545 lpp = cpp; /*%< end of list to search */ in ns_name_pack() 579 (const u_char * const *)lpp); in ns_name_pack() 614 *lpp = NULL; in ns_name_pack()
|
| /netbsd/src/sys/fs/nfs/client/ |
| D | nfs_clstate.c | 613 struct nfscllockowner **lpp, struct nfsclopen **opp) in nfscl_getopen() argument 620 if (lpp != NULL) in nfscl_getopen() 621 *lpp = NULL; in nfscl_getopen() 644 if (lpp != NULL) { in nfscl_getopen() 651 *lpp = lp; in nfscl_getopen() 661 if (lpp == NULL) in nfscl_getopen() 929 struct nfscllockowner **lpp, int *newonep, int *donelocallyp) in nfscl_getbytelock() argument 947 *lpp = NULL; in nfscl_getbytelock() 1115 *lpp = lp; in nfscl_getbytelock() 1126 struct nfscllockowner **lpp, int *dorpcp) in nfscl_relbytelock() argument [all …]
|
| /netbsd/src/usr.sbin/fwctl/ |
| D | fwcontrol.c | 616 p.dc_connected, p.max_port_speed, p.lpp, p.cable_speed, in dump_phy_registers()
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/doc/ |
| D | refcard.tex | 529 \quad height {\it lpp}&number of lines before pause in display\cr
|
| D | gdb.texinfo | 27777 @item set height @var{lpp} 27783 These @code{set} commands specify a screen height of @var{lpp} lines and
|
| /netbsd/src/external/gpl3/binutils/dist/opcodes/ |
| D | s390-opc.txt | 1004 b280 lpp S_RD "load program parameter" z10 zarch
|
| /netbsd/src/external/gpl3/gdb/dist/opcodes/ |
| D | s390-opc.txt | 1004 b280 lpp S_RD "load program parameter" z10 zarch
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/doc/ |
| D | invoke.texi | 28651 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
|
| D | gcc.info | 26251 installed in the standard location ('/usr/lpp/ppe.poe/'), or the
|