Searched refs:ndp (Results 1 - 25 of 41) sorted by relevance

12

/illumos-gate/usr/src/uts/common/io/rge/
H A Drge_ndd.c148 nd_param_t *ndp; local
152 ndp = (nd_param_t *)cp;
153 (void) mi_mpprintf(mp, "%d", ndp->ndp_val);
167 nd_param_t *ndp; local
172 ndp = (nd_param_t *)cp;
174 if (new_value < ndp->ndp_min || new_value > ndp->ndp_max)
177 ndp->ndp_val = (int)new_value;
178 ndp->ndp_info += 1;
191 nd_param_t *ndp; local
409 nd_param_t *ndp; local
[all...]
/illumos-gate/usr/src/uts/common/io/ntxn/
H A Dunm_ndd.c146 nd_param_t *ndp; local
148 ndp = (nd_param_t *)(uintptr_t)cp;
149 (void) mi_mpprintf(mp, "%d", ndp->ndp_val);
164 nd_param_t *ndp; local
168 ndp = (nd_param_t *)(uintptr_t)cp;
172 if (new_value < ndp->ndp_min || new_value > ndp->ndp_max)
175 ndp->ndp_val = new_value;
176 ndp->ndp_info += 1;
189 nd_param_t *ndp; local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.ndpd/
H A DMakefile28 OBJS= config.o main.o ndp.o tables.o trace.o
30 SVCMETHOD= svc-ndp
31 MANIFEST= ndp.xml
/illumos-gate/usr/src/uts/common/io/ib/ibnex/
H A Dibnex_hca.c248 ibnex_node_data_t *ndp; local
259 for (ndp = ibnex.ibnex_port_node_head;
260 ndp; ndp = ndp->node_next) {
263 port_node = &ndp->node_data.port_node;
266 ndp->node_dip = NULL;
267 ndp->node_state =
276 for (ndp = ibnex.ibnex_port_node_head;
277 ndp; nd
[all...]
H A Dibnex.c1553 ibnex_node_data_t *ndp; local
1570 for (ndp = ibnex.ibnex_ioc_node_head;
1571 ndp; ndp = ndp->node_next) {
1572 dip = ndp->node_dip;
1577 for (ndp = ibnex.ibnex_pseudo_node_head;
1578 ndp; ndp = ndp
[all...]
/illumos-gate/usr/src/man/man7p/
H A DMakefile33 ndp.7p \
68 NDP.7p := LINKSRC = ndp.7p
/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Dclusters.c749 orphanChain(int fd, int32_t c, struct pcdir *ndp) argument
757 markOrphan(fd, c, ndp);
762 (void) markInUse(fd, c, ndp, NULL, 0, VISIBLE, &tmpl);
967 struct pcdir *ndp = NULL; local
980 return (ndp);
1002 ((ndp = newDirEnt(dp)) != NULL)) {
1013 updateDirEnt_Size(ndp, (uint32_t)remainder);
1015 updateDirEnt_Start(ndp, nextInChain(endCluster));
1017 updateDirEnt_Start(ndp, endCluster);
1018 updateDirEnt_Name(ndp, newNam
1039 struct pcdir *ndp = NULL; local
1089 redoInUse(int fd, int32_t c, struct pcdir *ndp, int32_t stopAtCluster) argument
1192 struct pcdir *ndp = NULL; local
[all...]
H A Ddir.c1020 struct pcdir *ndp; local
1022 if ((ndp = (struct pcdir *)calloc(1, sizeof (struct pcdir))) == NULL) {
1025 return (ndp);
1028 (void) memcpy(ndp, copyme, sizeof (struct pcdir));
1029 ndp->pcd_ext[CHKNAME_C] = 'C';
1030 ndp->pcd_ext[CHKNAME_H] = 'H';
1031 ndp->pcd_ext[CHKNAME_K] = 'K';
1032 updateDirEnt_CreatTime(ndp);
1033 updateDirEnt_ModTimes(ndp);
1034 return (ndp);
[all...]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs_cmd.c423 struct dirent64 *ndp; local
444 ndp = (struct dirent64 *)newdata;
454 *ndp = *dp;
457 oname = ndp->d_name;
474 ndp->d_name[ilen] = '\0';
479 ndp->d_reclen = DIRENT64_RECLEN(strlen(ndp->d_name) + 1);
480 nsize += ndp->d_reclen;
482 ndp = nextdp(ndp);
[all...]
/illumos-gate/usr/src/common/ctf/
H A Dctf_decl.c74 ctf_decl_node_t *cdp, *ndp; local
79 cdp != NULL; cdp = ndp) {
80 ndp = ctf_list_next(cdp);
/illumos-gate/usr/src/lib/libmapid/common/
H A Dmapid.c893 char *ndp; local
904 for (ndp = dp; *ndp != '\0'; ndp++) {
905 if (!isspace(*ndp))
913 if (*ndp == '\0')
919 for (r = ndp; *r != '\0'; r++) {
928 return (ndp);
947 return (ndp);
/illumos-gate/usr/src/cmd/backup/restore/
H A Ddirs.c495 dcvt(struct odirect *odp, struct direct *ndp) argument
498 (void) bzero((char *)ndp, sizeof (*ndp));
499 ndp->d_ino = odp->d_ino;
502 assert(sizeof (ndp->d_name) > sizeof (odp->d_name));
503 (void) strncpy(ndp->d_name, odp->d_name, sizeof (odp->d_name));
504 ndp->d_name[sizeof (odp->d_name)] = '\0';
506 ndp->d_namlen = strlen(ndp->d_name);
509 assert(DIRSIZ(ndp)
[all...]
/illumos-gate/usr/src/uts/common/fs/dcfs/
H A Ddc_vnops.c925 struct dcnode *dp, *ndp; local
977 ndp = dcnode_alloc();
978 ndp->dc_subvp = vp;
980 ndp->dc_hdr = hdr;
981 ndp->dc_hdrsize = hdrsize;
986 ndp->dc_zmax = ZMAXBUF(bsize);
990 *cpp = kmem_cache_create("dcbuf_cache", ndp->dc_zmax, 0, NULL,
993 ndp->dc_bufcache = *cpp;
1003 dcnode_recycle(ndp);
1004 kmem_cache_free(dcnode_cache, ndp);
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A DMakefile32 ndd ndp $(SYNCPROG) wanbootutil
46 in.rwhod in.telnetd in.tftpd ipaddrsel ndp route
49 in.tftpd ipaddrsel ndp route
77 ipaddrsel ndp route \
272 $(LINT.c) ndp.c $(LDLIBS) \
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_decl.c96 dt_decl_t *ndp; local
98 for (; ddp != NULL; ddp = ndp) {
99 ndp = ddp->dd_next;
389 dt_decl_t *ndp = ddp; local
397 while (ndp->dd_next != NULL && ndp->dd_next->dd_kind == CTF_K_ARRAY)
398 ndp = ndp->dd_next; /* skip to bottom-most array declaration */
400 if (ndp != ddp) {
406 ddp->dd_next = ndp
[all...]
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dip_ndp.c418 nce_remove(ndp_g_t *ndp, ncec_t *ncec, ncec_t **free_nce_list) argument
423 ASSERT(MUTEX_HELD(&ndp->ndp_g_lock));
424 ASSERT(ndp->ndp_g_walker == 0);
448 * 3. If there is an ndp walker, return. The walker will do the cleanup.
458 ndp_g_t *ndp; local
462 ndp = ipst->ips_ndp4;
464 ndp = ipst->ips_ndp6;
498 mutex_enter(&ndp->ndp_g_lock);
501 * The last ndp walker has already removed this ncec from
505 mutex_exit(&ndp
741 ndp_g_t *ndp; local
942 ncec_walk_common(ndp_g_t *ndp, ill_t *ill, pfi_t pfi, void *arg1, boolean_t trace) argument
4393 struct ndp_g_s *ndp; local
[all...]
H A Drts.c119 static boolean_t rts_param_register(IDP *ndp, rtsparam_t *rtspa, int cnt);
776 rts_param_register(IDP *ndp, rtsparam_t *rtspa, int cnt) argument
780 if (!nd_load(ndp, rtspa->rts_param_name,
782 nd_free(ndp);
/illumos-gate/usr/src/uts/common/io/
H A Dwinlockio.c707 SegProc *ndp; local
723 ndp = seglock_alloc_specific(lp,
725 ASSERT(ndp != sdp);
728 ASSERT(ndp->lockseg == NULL);
729 ndp->lockseg = new_dhp;
732 ASSERT(ndp->unlockseg == NULL);
733 ndp->unlockseg = new_dhp;
735 ndp->flag |= TRASHPAGE;
739 *newpvt = (void *)ndp;
/illumos-gate/usr/src/uts/common/io/xge/drv/
H A Dxgell.c2412 ret = nd_getset(wq, lldev->ndp, mp);
2417 ret = nd_getset(wq, lldev->ndp, mp);
2774 if (nd_load(&lldev->ndp, "pciconf", xgell_pciconf_get, NULL,
2778 if (nd_load(&lldev->ndp, "about", xgell_about_get, NULL,
2782 if (nd_load(&lldev->ndp, "stats", xgell_stats_get, NULL,
2786 if (nd_load(&lldev->ndp, "bar0", xgell_bar0_get, xgell_bar0_set,
2790 if (nd_load(&lldev->ndp, "debug_level", xgell_debug_level_get,
2794 if (nd_load(&lldev->ndp, "debug_module_mask",
2799 if (nd_load(&lldev->ndp, "devconfig", xgell_devconfig_get, NULL,
2841 nd_free(&lldev->ndp);
[all...]
H A Dxgell.h361 caddr_t ndp; member in struct:xgelldev
/illumos-gate/usr/src/cmd/svc/configd/
H A Drc_node.c1232 rc_notify_deletion(rc_notify_delete_t *ndp, const char *service, argument
1237 uu_list_node_init(&ndp->rnd_notify, &ndp->rnd_notify.rcn_list_node,
1239 ndp->rnd_notify.rcn_delete = ndp;
1241 (void) snprintf(ndp->rnd_fmri, sizeof (ndp->rnd_fmri),
1253 (void) uu_list_insert_before(rc_notify_list, NULL, ndp);
4162 rc_notify_node_delete(rc_notify_delete_t *ndp, rc_node_t *np_arg) argument
4205 rc_notify_deletion(ndp,
4703 rc_notify_delete_t *ndp; local
7501 rc_notify_delete_t *ndp; local
[all...]
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Ddir.c162 struct direct *dp, *ndp = 0; local
250 if (ndp == NULL) {
312 ndp = (struct direct *)(bp->b_un.b_buf + idesc->id_loc);
313 if (dircheck(idesc, ndp) == 0)
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dload_elf.c313 int ndp; local
656 ndp = php->p_filesz / sizeof(Elf_Dyn);
657 if (ndp == 0)
668 for (i = 0; i < ndp; i++) {
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_conf.c867 fmd_conf_defer_t *cdp, *ndp; local
869 for (cdp = cfp->cf_defer; cdp != NULL; cdp = ndp) {
870 ndp = cdp->cd_next;
/illumos-gate/usr/src/stand/lib/sock/
H A Dsocket.c1353 unsigned char *ndp; local
1360 ndp = nbp->b_datap;
1362 nbp->b_rptr = ndp + (bp->b_rptr - bp->b_datap);

Completed in 286 milliseconds

12