Home
last modified time | relevance | path

Searched refs:ov (Results 1 – 10 of 10) sorted by relevance

/illumos-gate/usr/src/uts/sparc/v9/syscall/
H A Dinstall_utrap.c40 utrap_handler_t *ov, *nv, *pv, *sv, *tmp; in install_utrap() local
99 ov = p->p_utraps[idx]; in install_utrap()
102 tmp = atomic_cas_ptr(&p->p_utraps[idx], ov, nv); in install_utrap()
103 if (ov == tmp) in install_utrap()
105 ov = tmp; in install_utrap()
153 utrap_handler_t *ov, *nvp, *pv, *sv, *tmp; in sparc_utrap_install() local
243 ov = p->p_utraps[idx]; in sparc_utrap_install()
246 tmp = atomic_cas_ptr(&p->p_utraps[idx], ov, nvp); in sparc_utrap_install()
247 if (ov == tmp) in sparc_utrap_install()
249 ov = tmp; in sparc_utrap_install()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/comp/
H A Dexecvpe.c57 register char** ov;
60 for (ov = (char**)argv; *ov++;);
61 if (newargv = newof(0, char*, ov + 1 - (char**)argv, 0))
66 ov = (char**)argv;
67 while (*nv++ = *++ov);
/illumos-gate/usr/src/contrib/ast/src/lib/libast/obsolete/
H A Dspawn.c97 register char** ov;
100 for (ov = (char**)argv; *ov++;);
101 if (newargv = newof(0, char*, ov + 1 - (char**)argv, 0))
106 ov = (char**)argv;
107 while (*nv++ = *++ov);
/illumos-gate/usr/src/contrib/ast/src/lib/libast/misc/
H A Dsystrace.c41 long ov[2]; in systrace() local
59 ov[0] = PROC_FD_DUP(open("/dev/null", O_WRONLY), 2, PROC_FD_PARENT|PROC_FD_CHILD); in systrace()
60 ov[1] = 0; in systrace()
63 …if (!procfree(procopen(trace[n], av + 1, NiL, ov, PROC_ARGMOD|PROC_GID|PROC_UID|(n == (elementsof(… in systrace()
H A Doptget.c2362 char* ov; in opthelp() local
3184 ov = 0; in opthelp()
3205 ov = t + 1; in opthelp()
3435 if (ov) in opthelp()
3438 t = ov + ol; in opthelp()
3439 while (ov < t) in opthelp()
3441 if (((c = *ov++) == ':' || c == '?') && *ov == c) in opthelp()
3442 ov++; in opthelp()
/illumos-gate/usr/src/cmd/fm/eversholt/files/common/
H A Dstorage.esc82 event ereport.chassis.device.psu.dc-ov@psu;
115 event ereport.chassis.sensor.voltage.ov@controller;
116 event ereport.chassis.sensor.voltage.ov@fanmodule;
117 event ereport.chassis.sensor.voltage.ov@psu;
240 ereport.chassis.sensor.voltage.ov@controller,
246 ereport.chassis.sensor.voltage.ov@fanmodule,
252 ereport.chassis.sensor.voltage.ov@psu,
261 ereport.chassis.device.psu.dc-ov@psu,
/illumos-gate/usr/src/uts/common/io/usb/scsa2usb/
H A Dscsa2usb.c1476 scsa2usb_ov_t ov; in scsa2usb_override() local
1522 if (((descr->idVendor == (uint16_t)ov.vid) || (ov.vid == 0)) && in scsa2usb_override()
1523 ((descr->idProduct == (uint16_t)ov.pid) || (ov.pid == 0)) && in scsa2usb_override()
1524 ((descr->bcdDevice == (uint16_t)ov.rev) || (ov.rev == 0))) { in scsa2usb_override()
1534 ov.vid, ov.pid, ov.rev, ov.subclass, ov.protocol, in scsa2usb_override()
1535 ov.pmoff, ov.fake_removable, ov.no_modesense, in scsa2usb_override()
1536 ov.reduced_cmd_support); in scsa2usb_override()
1538 if (ov.pmoff) { in scsa2usb_override()
1541 if (ov.fake_removable) { in scsa2usb_override()
1545 if (ov.no_modesense) { in scsa2usb_override()
[all …]
/illumos-gate/usr/src/lib/libdwarf/common/
H A Ddwarf_alloc.c166 int ov = global_de_alloc_tree_on; in dwarf_set_de_alloc_flag() local
168 return ov; in dwarf_set_de_alloc_flag()
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_xdr.c1254 utf8string ov; in xdr_ga_fattr_res() local
1293 ov.utf8string_len = *owner_length; in xdr_ga_fattr_res()
1294 ov.utf8string_val = owner_val; in xdr_ga_fattr_res()
1295 error = nfs_idmap_str_uid(&ov, &uid, FALSE); in xdr_ga_fattr_res()
1869 utf8string ov; in xdr_ga_fattr_res_inline() local
1899 ov.utf8string_len = *owner_length; in xdr_ga_fattr_res_inline()
1900 ov.utf8string_val = owner_val; in xdr_ga_fattr_res_inline()
1901 error = nfs_idmap_str_uid(&ov, &uid, FALSE); in xdr_ga_fattr_res_inline()
1924 ov.utf8string_len; in xdr_ga_fattr_res_inline()
/illumos-gate/usr/src/uts/common/vm/
H A Dvm_as.c2130 struct seg_ops *ov = seg->s_ops; in as_swapout() local
2138 if ((ov != NULL) && (ov->swapout != NULL)) in as_swapout()