| /onnv/onnv-gate/usr/src/uts/common/io/1394/targets/av1394/ |
| av1394_list.c | 47 av1394_list_init(av1394_list_t *lp) 49 lp->l_head = lp->l_tail = NULL; 50 lp->l_cnt = 0; 58 av1394_list_head(av1394_list_t *lp) 60 return (lp->l_head); 69 av1394_list_put_tail(av1394_list_t *lp, void *item) 72 ITEM(item)->i_prev = lp->l_tail; 73 if (lp->l_tail == NULL) { 74 ASSERT(lp->l_head == 0) [all...] |
| /onnv/onnv-gate/usr/src/cmd/mail/ |
| isit.c | 35 * isit(lp, type) -- match "name" portion of 37 * lp -> pointer to line to check 40 * TRUE -> lp matches header type (case independent) 46 isit(lp, type) 47 register char *lp; 54 for (p = header[type].tag; *lp && *p; lp++, p++) { 55 if (*p != *lp) { 61 for (p = header[type].tag; *lp && *p; lp++, p++) [all...] |
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWpsr/ |
| prototype_com | 60 # LP configuation 62 d none etc/lp 775 lp lp 63 d none etc/lp/classes 775 lp lp 64 d none etc/lp/forms 775 lp lp [all...] |
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWpsf/ |
| prototype_com | 47 d none usr/lib/lp 755 root lp 48 d none usr/lib/lp/postscript 755 root lp 49 f none usr/lib/lp/postscript/aps.ps 555 root lp 50 f none usr/lib/lp/postscript/banner.ps 555 root lp 51 f none usr/lib/lp/postscript/baseline.ps 555 root lp [all...] |
| /onnv/onnv-gate/usr/src/cmd/sgs/tools/common/ |
| alist.c | 99 Alist *lp = *lpp; local 106 if (lp == NULL) { 117 if ((lp = malloc((size_t)bsize)) == NULL) 119 lp->al_arritems = init_arritems; 120 lp->al_nitems = 0; 121 lp->al_next = ALIST_OFF_DATA; 122 lp->al_size = size; 123 *lpp = lp; 126 ASSERT(size == lp->al_size); 128 if (lp->al_nitems >= lp->al_arritems) 190 APlist *lp = *lpp; local 423 APlist *lp = *lpp; local [all...] |
| /onnv/onnv-gate/usr/src/uts/sparc/sys/ |
| machlock.h | 41 extern void lock_set(lock_t *lp); 42 extern int lock_try(lock_t *lp); 43 extern int lock_spin_try(lock_t *lp); 44 extern int ulock_try(lock_t *lp); 45 extern void ulock_clear(lock_t *lp); 46 extern void lock_clear(lock_t *lp); 47 extern void lock_set_spl(lock_t *lp, int new_pil, ushort_t *old_pil); 48 extern void lock_clear_splx(lock_t *lp, int s); 53 #define LOCK_INIT_CLEAR(lp) (*(lp) = 0 [all...] |
| /onnv/onnv-gate/usr/src/lib/libast/common/tm/ |
| tmxleap.c | 40 register Tm_leap_t* lp; local 47 for (lp = &tm_data.leap[0]; sec < (lp->time - lp->total); lp++); 48 t = tmxsns(sec + lp->total, tmxnsec(t));
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWpcu/ |
| preremove.tmpl | 34 inetd_check network/lp:default
|
| /onnv/onnv-gate/usr/src/psm/stand/boot/sparc/common/ |
| get.c | 55 char *lp; local 59 lp = buf; 66 *lp = '\0'; 69 if (lp > buf) 70 lp--; 73 lp = buf; 78 if (lp < limit) 79 *lp++ = (char)c;
|
| /onnv/onnv-gate/usr/src/uts/sparc/v7/sys/ |
| mutex_impl.h | 90 #define MUTEX_OWNER(lp) ((kthread_id_t)((lp)->m_owner << PTR24_LSB)) 93 #define MUTEX_SET_WAITERS(lp) ((lp)->m_waiters = 1) 94 #define MUTEX_HAS_WAITERS(lp) ((lp)->m_waiters != 0) 95 #define MUTEX_CLEAR_LOCK_AND_WAITERS(lp) \ 96 (lp)->m_waiters = 0, (lp)->m_owner = 0 98 #define MUTEX_SET_TYPE(lp, type) (lp)->m_type = (type [all...] |
| /onnv/onnv-gate/usr/src/uts/common/os/ |
| mutex.c | 241 mutex_panic(char *msg, mutex_impl_t *lp) 246 if (casptr(&panic_mutex_addr, NULL, lp) == NULL) 247 panic_mutex = *lp; 249 panic("%s, lp=%p owner=%p thread=%p", 250 msg, (void *)lp, (void *)MUTEX_OWNER(&panic_mutex), 342 mutex_vector_enter(mutex_impl_t *lp) 350 volatile mutex_impl_t *vlp = (volatile mutex_impl_t *)lp; 356 if (MUTEX_TYPE_SPIN(lp)) { 357 lock_set_spl(&lp->m_spin.m_spinlock, lp->m_spin.m_minspl 533 const mutex_impl_t *lp = (const mutex_impl_t *)mp; local 546 const mutex_impl_t *lp = (const mutex_impl_t *)mp; local 568 mutex_impl_t *lp = (mutex_impl_t *)mp; local 620 mutex_impl_t *lp = (mutex_impl_t *)mp; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libuutil/common/ |
| uu_list.c | 35 #define ELEM_TO_NODE(lp, e) \ 36 ((uu_list_node_impl_t *)((uintptr_t)(e) + (lp)->ul_offset)) 38 #define NODE_TO_ELEM(lp, n) \ 39 ((void *)((uintptr_t)(n) - (lp)->ul_offset)) 182 uu_list_t *lp, *next, *prev; local 198 lp = uu_zalloc(sizeof (*lp)); 199 if (lp == NULL) { 204 lp->ul_pool = pp; 205 lp->ul_parent_enc = UU_PTR_ENCODE(parent) 478 uu_list_t *lp = wp->ulw_list; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/filesync/ |
| ignore.c | 109 { struct list *lp; local 128 for (lp = expr_list; lp; lp = lp->l_next) { 129 if (gmatch(name, lp->l_value) == 0) 134 lp->l_value, name); 174 { struct list *lp; local 179 lp = malloc(sizeof (*lp)); 258 struct list *lp; local 339 struct list *lp; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/print/scripts/ |
| getmakes | 32 [[ -f /var/lp/ppd/ppdcache ]] || exit 1 33 /bin/cat /var/lp/ppd/ppdcache |
|
| /onnv/onnv-gate/usr/src/uts/sparc/v9/sys/ |
| mutex_impl.h | 78 #define MUTEX_OWNER(lp) ((kthread_id_t)((lp)->m_owner & MUTEX_THREAD)) 81 #define MUTEX_SET_WAITERS(lp) \ 84 while ((old = (lp)->m_owner) != 0 && \ 85 casip(&(lp)->m_owner, old, old | MUTEX_WAITERS) != old) \ 89 #define MUTEX_HAS_WAITERS(lp) ((lp)->m_owner & MUTEX_WAITERS) 90 #define MUTEX_CLEAR_LOCK_AND_WAITERS(lp) (lp)->m_owner = 0 92 #define MUTEX_SET_TYPE(lp, type [all...] |
| /onnv/onnv-gate/usr/src/uts/intel/sys/ |
| mutex_impl.h | 81 #define MUTEX_OWNER(lp) ((kthread_id_t)((lp)->m_owner & MUTEX_THREAD)) 84 #define MUTEX_SET_WAITERS(lp) \ 87 while ((old = (lp)->m_owner) != 0 && \ 88 casip(&(lp)->m_owner, old, old | MUTEX_WAITERS) != old) \ 92 #define MUTEX_HAS_WAITERS(lp) ((lp)->m_owner & MUTEX_WAITERS) 93 #define MUTEX_CLEAR_LOCK_AND_WAITERS(lp) (lp)->m_owner = 0 95 #define MUTEX_SET_TYPE(lp, type [all...] |
| machlock.h | 44 extern void lock_set(lock_t *lp); 45 extern int lock_try(lock_t *lp); 46 extern int lock_spin_try(lock_t *lp); 47 extern int ulock_try(lock_t *lp); 48 extern void lock_clear(lock_t *lp); 49 extern void ulock_clear(lock_t *lp); 50 extern void lock_set_spl(lock_t *lp, int new_pil, ushort_t *old_pil); 51 extern void lock_clear_splx(lock_t *lp, int s); 56 #define LOCK_INIT_CLEAR(lp) (*(lp) = 0 [all...] |
| /onnv/onnv-gate/usr/src/lib/libshell/common/sh/ |
| lex.c | 116 #define pushlevel(lp,c,s) ((lp->lexd.level>=lp->lexd.lex_max?stack_grow(lp):1) &&\ 117 ((lp->lexd.lex_match[lp->lexd.level++]=lp->lexd.lastc),\ 118 lp->lexd.lastc=(((s)<<CHAR_BIT)|(c)))) 119 #define oldmode(lp) (lp->lexd.lastc>>CHAR_BIT) 183 register Lex_t *lp = (Lex_t*)context; local 2302 Lex_t *lp; member in struct:alias 2323 register Lex_t *lp; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/fm/fmd/common/ |
| fmd_log.c | 111 fmd_log_write(fmd_log_t *lp, const void *buf, size_t n) 116 ASSERT(MUTEX_HELD(&lp->log_lock)); 119 if ((len = write(lp->log_fd, buf, resid)) <= 0) 133 fmd_log_write_hdr(fmd_log_t *lp, const char *tag) 144 (void) fmd_conf_getprop(fmd.d_conf, "uuidlen", &lp->log_uuidlen); 146 lp->log_uuid = fmd_zalloc(lp->log_uuidlen + 1, FMD_SLEEP); 148 uuid_unparse(uuid, lp->log_uuid); 158 err |= ea_set_item(&i5, CAT_FMA_UUID, lp->log_uuid, 0); 179 if ((lp->log_off = lseek64(lp->log_fd, 0, SEEK_END)) == -1L 354 fmd_log_t *lp = fmd_zalloc(sizeof (fmd_log_t), FMD_SLEEP); local [all...] |
| /onnv/onnv-gate/usr/src/lib/fm/libfmd_log/common/ |
| fmd_log.c | 70 * sets both lp->log_errno and errno to the specified value. If the current 75 fmd_log_set_errno(fmd_log_t *lp, int err) 78 lp->log_errno = EFDL_EXACCT + ea_error(); 80 lp->log_errno = EFDL_BADTAG; 82 lp->log_errno = err; 84 errno = lp->log_errno; 90 fmd_log_dprintf(fmd_log_t *lp, const char *format, ...) 94 if (lp->log_flags & FMD_LF_DEBUG) { 108 fmd_log_load_record(fmd_log_t *lp, uint_t iflags, fmd_log_record_t *rp) 115 ea_clear(&lp->log_ea) 381 fmd_log_t *lp; local [all...] |
| /onnv/onnv-gate/usr/src/uts/common/disp/ |
| disp_lock.c | 58 disp_lock_init(disp_lock_t *lp, char *name) 60 DISP_LOCK_INIT(lp); 65 disp_lock_destroy(disp_lock_t *lp) 67 DISP_LOCK_DESTROY(lp); 71 disp_lock_enter_high(disp_lock_t *lp) 73 lock_set(lp); 77 disp_lock_exit_high(disp_lock_t *lp) 81 ASSERT(DISP_LOCK_HELD(lp)); 82 lock_clear(lp); 86 disp_lock_enter(disp_lock_t *lp) 127 lock_t *lp = *tlpp; local 170 lock_t *lp = *tlpp; local 196 disp_lock_t *lp; local 215 disp_lock_t *lp; local [all...] |
| /onnv/onnv-gate/usr/src/uts/common/io/ |
| winlockio.c | 306 struct seglock *lp; /* associated lock context */ member in struct:segproc 334 #define LOCK(lp) (*((lp)->lockptr)) 375 * All fields in list of SegProc (lp->clients) 385 * But before this pointer is used to access any fields (other than the 'lp') 386 * lp->mutex must be held. 405 #define seglock_findclient(lp) seglock_find_specific((lp), CURPROC_ID) 406 #define seglock_allocclient(lp) seglock_alloc_specific((lp), CURPROC_ID 587 SegLock *lp; local 660 SegLock *lp = seglock_findlock((uint_t)off); \/* returns w\/ mutex held *\/ local 708 SegLock *lp = sdp->lp; local 751 SegLock *lp = sdp->lp; local 788 SegLock *lp = sdp->lp; local 833 SegLock *lp; local 855 SegLock *lp; local 878 SegLock *lp; local 1106 struct seglock *lp; local 1180 struct seglock *lp; local 1216 SegLock *lp; local 1256 SegLock *lp; local 1581 SegLock *lp, *lpnext; local 1606 SegLock *lp; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/sendmail/db/log/ |
| log_put.c | 79 LOG *lp; local 83 lp = dblp->lp; 91 lsn->file = lp->lsn.file; 92 lsn->offset = lp->lsn.offset; 97 if (lp->lsn.offset + sizeof(HDR) + dbt->size > lp->persist.lg_max) { 99 sizeof(LOGP) + dbt->size > lp->persist.lg_max) { 113 lastoff = lp->lsn.offset; 116 ++lp->lsn.file 208 LOG *lp; local 264 LOG *lp; local 361 LOG *lp; local 420 LOG *lp; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libgen/common/ |
| reg_step.c | 216 advance(char *lp, char *ep) 222 start = lp; 223 ret = _advance(lp, ++ep); 229 _advance(char *lp, char *ep) 245 if (*ep++ == *lp++) 252 if ((n = Popwchar(lp, cl)) <= 0 || c != cl) 254 lp += n; 261 if ((n = Popwchar(lp, cl)) > 0) { 262 lp += n; 265 lp++ 608 char *lp; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/lp/ |
| Makefile | 27 include ./Makefile.lp 48 $(ROOTVAR)/lp \ 49 $(ROOTVAR)/lp/logs \ 50 $(ROOTVARSP)/lp \ 51 $(ROOTVARSP)/lp/admins \ 52 $(ROOTVARSP)/lp/requests \ 53 $(ROOTVARSP)/lp/system 55 SYMDIR1 = $(ROOTVARSP)/lp/admins/lp 56 SYMDIR2 = $(ROOTVARSP)/lp/bi [all...] |