HomeSort by relevance Sort by last modified time
    Searched refs:uc (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /onnv/onnv-gate/usr/src/lib/libc/port/sys/
getpeerucred.c 41 ucred_t *uc = *ucp; local
43 if (uc == NULL) {
44 uc = _ucred_alloc();
45 if (uc == NULL)
49 if (syscall(SYS_ucredsys, UCREDSYS_GETPEERUCRED, fd, uc) != 0) {
51 ucred_free(uc);
54 *ucp = uc;
  /onnv/onnv-gate/usr/src/lib/libc/sparc/gen/
_xregs_clrptr.c 38 _xregs_clrptr(ucontext_t *uc)
41 uc->uc_mcontext.xrs.xrs_id = 0;
42 uc->uc_mcontext.xrs.xrs_ptr = NULL;
siglongjmp.c 48 ucontext_t uc; local
49 greg_t *reg = uc.uc_mcontext.gregs;
62 (void) memset(&uc, 0, sizeof (uc));
63 uc.uc_flags = UC_STACK | UC_CPU;
65 uc.uc_stack = bp->sjs_stack;
66 uc.uc_link = bp->sjs_uclink;
72 uc.uc_flags |= UC_SIGMASK;
73 uc.uc_sigmask = bp->sjs_sigmask;
98 (void) setcontext(&uc);
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/sparcv9/gen/
_xregs_clrptr.c 38 _xregs_clrptr(ucontext_t *uc)
40 uc->uc_mcontext.xrs.xrs_id = 0;
41 uc->uc_mcontext.xrs.xrs_ptr = NULL;
siglongjmp.c 48 ucontext_t uc; local
49 greg_t *reg = uc.uc_mcontext.gregs;
62 (void) memset(&uc, 0, sizeof (uc));
63 uc.uc_flags = UC_STACK | UC_CPU;
65 uc.uc_stack = bp->sjs_stack;
66 uc.uc_link = bp->sjs_uclink;
72 uc.uc_flags |= UC_SIGMASK;
73 uc.uc_sigmask = bp->sjs_sigmask;
98 (void) setcontext(&uc);
    [all...]
  /onnv/onnv-gate/usr/src/lib/libbsm/common/
adt_ucred.h 43 extern au_id_t ucred_getauid(const ucred_t *uc);
44 extern au_asid_t ucred_getasid(const ucred_t *uc);
45 extern const au_mask_t *ucred_getamask(const ucred_t *uc);
46 extern const au_tid64_addr_t *ucred_getatid(const ucred_t *uc);
  /onnv/onnv-gate/usr/src/uts/common/sys/
ucred.h 74 #define UCCRED(uc) (prcred_t *)(((uc)->uc_credoff == 0) ? NULL : \
75 ((char *)(uc)) + (uc)->uc_credoff)
78 #define UCPRIV(uc) (prpriv_t *)(((uc)->uc_privoff == 0) ? NULL : \
79 ((char *)(uc)) + (uc)->uc_privoff)
82 #define UCAUD(uc) (auditinfo64_addr_t *)(((uc)->uc_audoff == 0) ? NULL :
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Ucred/
Ucred.xs 62 #define RETUCRED(uc) \
65 (void*)(uc)); \
81 ucred_geteuid(uc)
82 Sun::Solaris::Ucred::Ucred *uc;
85 ucred_getruid(uc)
86 Sun::Solaris::Ucred::Ucred *uc;
89 ucred_getsuid(uc)
90 Sun::Solaris::Ucred::Ucred *uc;
93 ucred_getegid(uc)
94 Sun::Solaris::Ucred::Ucred *uc;
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
ucred.c 86 ucred_free(ucred_t *uc)
88 free(uc);
95 ucred_t *uc; local
97 uc = _ucred_alloc();
99 if (uc == NULL)
102 if (syscall(SYS_ucredsys, UCREDSYS_UCREDGET, pid, uc) != 0) {
103 ucred_free(uc);
107 return (uc);
111 ucred_geteuid(const ucred_t *uc)
114 const prcred_t *cr = UCCRED(uc);
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/zyd/
zyd_usb.c 44 static zyd_res zyd_usb_data_in_start_request(struct zyd_usb *uc);
115 zyd_usb_ctrl_send(struct zyd_usb *uc, uint8_t request, uint16_t value,
139 while ((err = usb_pipe_ctrl_xfer_wait(uc->cdata->dev_default_ph,
160 zyd_usb_ctrl_recv(struct zyd_usb *uc, uint8_t request, uint16_t value,
181 err = usb_pipe_ctrl_xfer_wait(uc->cdata->dev_default_ph,
218 zyd_usb_loadfirmware(struct zyd_usb *uc, uint8_t *fw, size_t size)
229 if (zyd_usb_ctrl_send(uc, ZYD_DOWNLOADREQ, addr, fw, mlen)
239 if (zyd_usb_ctrl_recv(uc, ZYD_DOWNLOADSTS, 0, &stat, sizeof (stat))
341 zyd_usb_open_pipe(struct zyd_usb *uc,
365 if (usb_pipe_open(uc->dip, &endpoint->ep_descr
761 struct zyd_usb *uc; local
823 struct zyd_usb *uc; local
889 struct zyd_usb *uc; local
969 struct zyd_usb *uc; local
1085 struct zyd_usb *uc = &sc->usb; local
1137 struct zyd_usb *uc = &sc->usb; local
1153 struct zyd_usb *uc; local
1199 struct zyd_usb *uc; local
1228 struct zyd_usb *uc = &sc->usb; local
1253 struct zyd_usb *uc = &sc->usb; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fm/eversholt/files/sparc/sun4v/
gcpu.esc 87 ERPT_EVENT(chip, itlb-uc);
88 ERPT_EVENT(core, itlb-uc);
89 ERPT_EVENT(strand, itlb-uc);
90 ERPT_EVENT(chip, dtlb-uc);
91 ERPT_EVENT(core, dtlb-uc);
92 ERPT_EVENT(strand, dtlb-uc);
93 ERPT_EVENT(chip, icache-uc);
94 ERPT_EVENT(core, icache-uc);
95 ERPT_EVENT(chip, dcache-uc);
96 ERPT_EVENT(core, dcache-uc);
    [all...]
gmem.esc 57 event ereport.cpu.generic-sparc.mem-uc@level { within(1s)}
68 ereport.cpu.generic-sparc.mem-uc@level<>; \
74 ereport.cpu.generic-sparc.mem-uc@level<>
86 ereport.cpu.generic-sparc.mem-uc@level<>; \
92 ereport.cpu.generic-sparc.mem-uc@level<>
187 * membuf-crc-uc will fault the detector FRU and sender FRU
191 event ereport.cpu.generic-sparc.membuf-crc-uc@CHIP { within(1s) };
192 event ereport.cpu.generic-sparc.membuf-crc-uc@MEM_BUFF { within(1s) };
193 event ereport.cpu.generic-sparc.membuf-crc-uc@MEM_CTRL { within(1s) };
195 event fault.memory.memlink-uc@CHIP
    [all...]
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
wadd_wch.c 60 cchar_t uc; local
88 uc._n = 1;
89 uc._at = cc->_at;
90 uc._co = cc->_co;
96 uc._wc[0] = *p;
97 if (__m_cc_add(w, y, x, &uc, 0, &y, &x) == ERR)
  /onnv/onnv-gate/usr/src/uts/intel/ia32/syscall/
getcontext.c 182 ucontext_t uc; local
201 savecontext(&uc, curthread->t_hold);
202 if (copyout(&uc, arg, sizeof (uc)))
214 if (copyin(ucp, &uc, sizeof (ucontext_t) -
215 sizeof (uc.uc_filler) -
216 sizeof (uc.uc_mcontext.fpregs))) {
220 if ((uc.uc_flags & UC_FPU) &&
221 copyin(&ucp->uc_mcontext.fpregs, &uc.uc_mcontext.fpregs,
222 sizeof (uc.uc_mcontext.fpregs)))
315 ucontext32_t uc; local
    [all...]
  /onnv/onnv-gate/usr/src/ucblib/librpcsoc/
svc_udp.c 367 struct udp_cache *uc; local
373 uc = ALLOC(struct udp_cache, 1);
374 if (uc == NULL) {
378 uc->uc_size = size;
379 uc->uc_nextvictim = 0;
380 uc->uc_entries = ALLOC(cache_ptr, size * SPARSENESS);
381 if (uc->uc_entries == NULL) {
384 FREE(uc, struct udp_cache, 1);
387 BZERO(uc->uc_entries, cache_ptr, size * SPARSENESS);
388 uc->uc_fifo = ALLOC(cache_ptr, size)
413 struct udp_cache *uc = (struct udp_cache *) su->su_cache; local
484 register struct udp_cache *uc = (struct udp_cache *) su->su_cache; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/sparc/syscall/
getcontext.c 177 ucontext_t uc; local
202 savecontext(&uc, curthread->t_hold);
213 uc.uc_mcontext.fpregs.fpu_qcnt = 0;
214 uc.uc_mcontext.fpregs.fpu_q = (struct fq *)NULL;
216 if (copyout(&uc, arg, sizeof (ucontext_t)))
228 if (copyin(ucp, &uc, sizeof (ucontext_t) -
229 sizeof (uc.uc_filler) -
230 sizeof (uc.uc_mcontext.fpregs) -
231 sizeof (uc.uc_mcontext.xrs) -
232 sizeof (uc.uc_mcontext.asrs)
420 ucontext32_t uc; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/common/
sigsetjmp.c 46 ucontext_t uc; local
51 uc.uc_flags = UC_STACK | UC_SIGMASK;
52 __getcontext(&uc);
62 bp->sjs_stack = uc.uc_stack;
67 memcpy(bp->sjs_sigmask, &(uc.uc_sigmask), 3 * sizeof (int));
106 ucontext_t uc; local
111 uc.uc_flags = UC_STACK;
112 __getcontext(&uc);
125 bp->sjs_stack = uc.uc_stack;
  /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/4.2/
setjmp.c 45 ucontext_t uc; local
50 uc.uc_flags = UC_STACK | UC_SIGMASK;
51 __getcontext(&uc);
61 bp->sjs_stack = uc.uc_stack;
65 memcpy(bp->sjs_sigmask, &(uc.uc_sigmask), 3 * sizeof (int));
  /onnv/onnv-gate/usr/src/common/bzip2/
decompress.c 108 UChar uc; local
197 GET_UCHAR(BZ_X_MAGIC_1, uc);
198 if (uc != BZ_HDR_B) RETURN(BZ_DATA_ERROR_MAGIC);
200 GET_UCHAR(BZ_X_MAGIC_2, uc);
201 if (uc != BZ_HDR_Z) RETURN(BZ_DATA_ERROR_MAGIC);
203 GET_UCHAR(BZ_X_MAGIC_3, uc)
204 if (uc != BZ_HDR_h) RETURN(BZ_DATA_ERROR_MAGIC);
222 GET_UCHAR(BZ_X_BLKHDR_1, uc);
224 if (uc == 0x17) goto endhdr_2;
225 if (uc != 0x31) RETURN(BZ_DATA_ERROR)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/i386/gen/
makectxt.c 85 ucontext_t uc; local
87 (void) getcontext(&uc);
88 (void) setcontext(uc.uc_link);
  /onnv/onnv-gate/usr/src/uts/common/syscall/
ucredsys.c 51 struct ucred_s *uc; local
113 uc = cred2ucred(kpc.pc_cr, kpc.pc_cpid, NULL, CRED());
117 err = copyout(uc, buf, uc->uc_size);
119 kmem_free(uc, uc->uc_size);
135 struct ucred_s *uc; local
174 uc = cred2ucred(pcr, pid, NULL, CRED());
178 err = copyout(uc, ubuf, uc->uc_size)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
wadd_wch.c 76 cchar_t uc; local
108 uc._n = 1;
109 uc._at = cc->_at;
110 uc._co = cc->_co;
116 uc._wc[0] = *p;
117 if (__m_cc_add(w, y, x, &uc, 0, &y, &x) == ERR)
  /onnv/onnv-gate/usr/src/lib/libast/common/features/
limits.c 89 unsigned char uc; local
105 uc = 0;
106 uc = ~uc;
108 while (uc >>= 1) val++;
118 uc = 0;
119 uc = ~uc;
132 val = uc;
141 val = (unsigned char)(uc >> 1) + 1
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lp/lib/lp/
tx.c 110 ucred_t *uc = NULL; local
119 if (getpeerucred(fd, &uc) == -1)
122 sl = ucred_getlabel(uc);
125 ucred_free(uc);
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
lc.t 23 is(uc($a) , "HELLO\.\* WORLD", 'uc');
35 is(uc($b) , "HELLO\.\* WORLD", 'uc');
53 is(uc($a) , "\x{100}\x{100}AA", 'uc');
65 is(uc($b) , "\x{100}\x{100}AA", 'uc');
129 is(uc("\x{1C5}") , "\x{1C4}", "U+01C5 uc is U+01C4")
    [all...]

Completed in 1535 milliseconds

1 2 3 4 5 6 7 8