| /onnv/onnv-gate/usr/src/lib/libpool/common/ |
| pool_value.c | 67 pool_value_get_uint64(const pool_value_t *pv, uint64_t *result) 69 if (pv->pv_class != POC_UINT) { 73 *result = pv->pv_u.u; 82 pool_value_get_int64(const pool_value_t *pv, int64_t *result) 84 if (pv->pv_class != POC_INT) { 88 *result = pv->pv_u.i; 98 pool_value_get_double(const pool_value_t *pv, double *result) 100 if (pv->pv_class != POC_DOUBLE) { 104 *result = pv->pv_u.d; 113 pool_value_get_bool(const pool_value_t *pv, uchar_t *result [all...] |
| /onnv/onnv-gate/usr/src/lib/fm/topo/libtopo/common/ |
| topo_prop.c | 121 prop_method_get(tnode_t *node, topo_propval_t *pv, topo_propmethod_t *pm, 129 if (topo_hdl_nvalloc(pv->tp_hdl, &args, NV_UNIQUE_NAME) < 0 || 145 topo_prop_hold(pv); 150 topo_prop_rele(pv); 154 topo_prop_rele(pv); 160 if (ret != 0 || strcmp(name, pv->tp_name) != 0) 164 if (ret != 0 || type != pv->tp_type) 168 if (pv->tp_val != NULL) 169 nvlist_free(pv->tp_val); 170 pv->tp_val = nvl 179 topo_propval_t *pv = NULL; local 211 topo_propval_t *pv; local 502 topo_propval_t *pv; local 522 topo_propval_t *pv; local 771 topo_propval_t *pv; local 878 topo_propval_t *pv = NULL; local 979 topo_propval_t *pv; local 1017 topo_propval_t *pv = NULL; local 1045 topo_propval_t *pv = NULL; local 1078 topo_propval_t *pv; local 1364 topo_propval_t *pv; local 1422 topo_propval_t *pv; local 1494 topo_propval_t *pv; local [all...] |
| topo_2xml.c | 106 topo_propval_t *pv) 112 switch (pv->tp_type) { 115 if (topo_prop_get_int32(node, pgname, pv->tp_name, &val, 126 if (topo_prop_get_uint32(node, pgname, pv->tp_name, 137 if (topo_prop_get_int64(node, pgname, pv->tp_name, &val, 149 if (topo_prop_get_uint64(node, pgname, pv->tp_name, 160 if (topo_prop_get_string(node, pgname, pv->tp_name, 169 if (topo_prop_get_fmri(node, pgname, pv->tp_name, &val, 188 pv->tp_name, &val, &nelem, &err) != 0) 216 begin_end_element(fp, Propval, Name, pv->tp_name, Type, tbuf [all...] |
| /onnv/onnv-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/ |
| PoolInternal.java | 133 final static native int pool_value_get_uint64(long pv, long result); 134 final static native int pool_value_get_int64(long pv, long result); 135 final static native int pool_value_get_double(long pv, long result); 136 final static native int pool_value_get_bool(long pv, long result); 137 final static native int pool_value_get_string(long pv, long result); 138 final static native int pool_value_get_type(long pv); 139 final static native void pool_value_set_uint64(long pv, long val); 140 final static native void pool_value_set_int64(long pv, long val); 141 final static native void pool_value_set_double(long pv, double val); 142 final static native void pool_value_set_bool(long pv, short val) [all...] |
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWdcar/ |
| postinstall | 44 prtconf -pv | egrep -s "$i"
|
| /onnv/onnv-gate/usr/src/lib/libc/port/regex/ |
| wordexp.c | 117 int pv[2]; /* pipe from shell stdout */ local 274 if (pipe(pv) < 0) { 288 error = posix_spawn_file_actions_adddup2(&fact, pv[1], 1); 289 if (error == 0 && pv[0] != 1) 290 error = posix_spawn_file_actions_addclose(&fact, pv[0]); 291 if (error == 0 && pv[1] != 1) 292 error = posix_spawn_file_actions_addclose(&fact, pv[1]); 302 (void) close(pv[1]); 304 (void) close(pv[0]); 309 if ((fp = fdopen(pv[0], "rF")) == NULL) 421 int pv[2]; \/* pipe from shell stdout *\/ local [all...] |
| /onnv/onnv-gate/usr/src/cmd/csh/ |
| sh.exec.c | 58 tchar *dp, **pv, **av; local 123 pv = justabs; 125 pv = v->vec; 137 if (!slash && pv[0][0] == '/' && havhash) { 143 if (pv[0][0] == 0 || eq(pv[0], S_DOT /* "." */)) { /* don't make ./xxx */ 146 dp = strspl(*pv, sav); 160 pv++; 162 } while (*pv); 383 tchar **pv; local [all...] |
| sh.sem.c | 60 int pv[2]; local 327 execute(t->t_dcar, wanttty, pipein, pv); 332 execute(t->t_dcdr, wanttty, pv, pipeout); 493 mypipe(int *pv) 499 if (pipe(pv) < 0) 501 setfd(pv[0]); 502 setfd(pv[1]); 504 pv[0] = dmove(pv[0], -1); 505 pv[1] = dmove(pv[1], -1) [all...] |
| sh.dir.c | 225 tchar **pv; local 229 pv = justabs; 231 pv = c->vec; 246 if (pv[0][0] == '/') { 253 fullpath = strspl(*pv, slashcp); 272 for (dp = buf, p = *pv; *dp++ = *p++; ) 285 pv++; 287 } while (*pv);
|
| /onnv/onnv-gate/usr/src/uts/sparc/v9/syscall/ |
| install_utrap.c | 42 utrap_handler_t *ov, *nv, *pv, *sv, *tmp; local 88 pv = sv = kmem_zalloc((UT_PRECISE_MAXTRAPS+1) * 92 kmem_free(pv, (UT_PRECISE_MAXTRAPS+1) * 155 utrap_handler_t *ov, *nvp, *pv, *sv, *tmp; local 232 pv = sv = kmem_zalloc((UT_PRECISE_MAXTRAPS+1) * 236 kmem_free(pv, (UT_PRECISE_MAXTRAPS+1) *
|
| /onnv/onnv-gate/usr/src/cmd/format/ |
| add_definition.c | 316 struct dk_map2 *pv; local 319 struct dkl_partition *pv; local 338 pv = part->vtoc.v_part; 340 for (i = 0; i < NDKMAP; i++, pp++, pv++, dv++) { 344 if (pv->p_tag != dv->p_tag || 345 pv->p_flag != dv->p_flag) { 347 (int)pv->p_tag); 352 (int)pv->p_flag);
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNW1394/ |
| postinstall | 44 prtconf -pv | egrep -s "${DRVALIAS}"
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWqus/ |
| postinstall | 46 prtconf -pv | egrep "${HARDWARE_STRING}" > /dev/null 2>&1
|
| /onnv/onnv-gate/usr/src/cmd/pools/pooladm/ |
| pooladm.c | 75 pool_value_t *pv; local 82 if ((pv = pool_value_alloc()) == NULL || 84 pv) == POC_INVAL || 85 pool_value_get_string(pv, &tgt) != PO_SUCCESS) 92 pool_value_free(pv);
|
| /onnv/onnv-gate/usr/src/cmd/avs/dsstat/ |
| common.c | 181 uint32_t *pv, *cv; local 183 pv = kstat_value(pksp, name); 186 return (u32_delta(*pv, *cv));
|
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/ |
| in.rexecd.c | 172 int pv[2], cc; local 367 (void) pipe(pv); 380 (void) close(f); (void) close(pv[1]); 383 FD_SET(pv[0], &readfrom); 384 (void) ioctl(pv[0], FIONBIO, (char *)&one); 388 if (select(MAXFD(s, pv[0])+1, &ready, NULL, 399 if (FD_ISSET(pv[0], &ready)) { 400 cc = read(pv[0], buf, sizeof (buf)); 403 FD_CLR(pv[0], &readfrom); 408 FD_ISSET(pv[0], &readfrom)) [all...] |
| /onnv/onnv-gate/usr/src/cmd/devprop/ |
| devprop.c | 120 #define PER_TYPE(typ, func, val, incr, form, pv, sep) \ 125 (void) printf((form), pv); \
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWifp/ |
| postinstall | 23 prtconf -pv | egrep -s "${DRVALIAS}"
|
| /onnv/onnv-gate/usr/src/lib/libshell/common/sh/ |
| suid_exec.c | 367 int pv[2]; local 395 if(pipe(pv) < 0) 400 close(pv[1]); 407 read(pv[0],pv,1); /* wait for clone to close pipe */ 447 close(pv[0]); 449 if(pv[1] != FDSYNC) 452 if(fcntl(pv[1],F_DUPFD,FDSYNC) != FDSYNC)
|
| args.c | 782 static int arg_pipe(register int pv[]) 785 if(pipe(fd)<0 || (pv[0]=fd[0])<0 || (pv[1]=fd[1])<0) 787 pv[0] = sh_iomovefd(pv[0]); 788 pv[1] = sh_iomovefd(pv[1]); 789 sh.fdstatus[pv[0]] = IONOSEEK|IOREAD; 790 sh.fdstatus[pv[1]] = IONOSEEK|IOWRITE; 791 sh_subsavefd(pv[0]) 801 int monitor, fd, pv[2]; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/pools/poolstat/ |
| poolstat.c | 505 double pv; local 515 pv = v; 519 pv = (double)v / KILO; 522 pv = (double)v / KILO; 525 pv = (double)v / KILO; 528 pv = (double)v / MEGA; 531 pv = (double)v / MEGA; 534 pv = (double)v / MEGA; 537 pv = (double)v / GIGA; 540 pv = (double)v / GIGA [all...] |
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ |
| cop.h | 41 # define CopFILE_set(c,pv) ((c)->cop_file = savepv(pv)) 43 # define CopFILE_set(c,pv) ((c)->cop_file = savesharedpv(pv)) 53 # define CopSTASHPV_set(c,pv) ((c)->cop_stashpv = ((pv) ? savepv(pv) : Nullch)) 55 # define CopSTASHPV_set(c,pv) ((c)->cop_stashpv = savesharedpv(pv)) 79 # define CopFILE_set(c,pv) CopFILEGV_set((c), gv_fetchfile(pv) [all...] |
| /onnv/onnv-gate/usr/src/uts/common/io/scsi/adapters/scsi_vhci/fops/ |
| sym_hds.c | 150 unsigned char pv; local 171 pv = ASYM_ACTIVE_ACTIVE; 178 pv = SYM_ACTIVE_ACTIVE; 193 *ctprivp = kmem_alloc(sizeof (pv), 197 *((unsigned char *)*ctprivp) = pv;
|
| /onnv/onnv-gate/usr/src/lib/librstp/common/ |
| stpm.c | 182 register void* pv; local 187 pv = (void*) stater->next; 189 this->machines = stater = (STATE_MACH_T*) pv; 193 pv = (void*) port->next; 195 this->ports = port = (PORT_T*) pv;
|
| /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/dtrace/ |
| dof.c | 834 dof_provider_t pv; local 844 if (mdb_vread(&pv, sz, addr + sec->dofs_offset) != sz) { 849 sz = dofs[pv.dofpv_strtab].dofs_size; 852 dofs[pv.dofpv_strtab].dofs_offset) != sz) { 858 strtab + pv.dofpv_name); 860 sz = dofs[pv.dofpv_prargs].dofs_size; 864 dofs[pv.dofpv_prargs].dofs_offset) != sz) { 870 sz = dofs[pv.dofpv_proffs].dofs_size; 872 if (mdb_vread(offs, sz, addr + dofs[pv.dofpv_proffs].dofs_offset) 880 pv.dofpv_prenoffs == 0) [all...] |