| /onnv/onnv-gate/usr/src/cmd/mail/ |
| getcomment.c | 46 int depth = 0; local 57 depth--; 58 if (depth == 0) { 62 depth++;
|
| /onnv/onnv-gate/usr/src/cmd/fm/modules/common/eversholt/ |
| evnv.h | 39 int evnv_cmpnvl(nvlist_t *nvl1, nvlist_t *nvl2, int depth);
|
| evnv.c | 44 outindent(int depth) 46 while (depth-- > 0) 54 evnv_cmpnvl(nvlist_t *nvl1, nvlist_t *nvl2, int depth) 77 outindent(depth); 87 outindent(depth); 104 if ((ret = evnv_cmpnvl(l1, l2, depth + 1)) != 0) 113 evnv_cmpnvl(*la1, *la2, depth + 1)) != 0) 127 outindent(depth); 141 outindent(depth); 152 outindent(depth); [all...] |
| /onnv/onnv-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
| Flow.java | 35 * direction (entry or return) and depth in the call stack. This 77 new String[] {"kind", "depth"}) 113 private final int depth; field in class:Flow 117 * depth. Supports XML persistence. 121 * @param flowDepth current depth in the call stack 132 depth = flowDepth; 133 if (depth < 0) { 134 throw new IllegalArgumentException("depth is negative"); 152 * Gets the current depth in the call stack. 157 * entered two functions but only returned from one, the depth i [all...] |
| /onnv/onnv-gate/usr/src/common/smbsrv/ |
| smb_match.c | 37 * Maximum recursion depth for the wildcard match functions. 55 int depth = 0; local 58 if ((rc = smb_match_private(patn, str, &depth)) == -1) 78 smb_match_private(const char *patn, const char *str, int *depth) 102 if ((*depth)++ >= SMB_MATCH_DEPTH_MAX) 106 rc = smb_match_private(patn, str, depth); 167 int depth = 0; local 170 if ((rc = smb_match_ci_private(patn, str, &depth)) == -1) 190 smb_match_ci_private(const char *patn, const char *str, int *depth) 231 if ((*depth)++ >= SMB_MATCH_DEPTH_MAX [all...] |
| /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/ |
| ftw.c | 36 * int ftw (path, fn, depth) char *path; int (*fn)(); int depth; 77 * The third argument to ftw does not limit the depth to which 78 * ftw will go. Rather, it limits the depth to which ftw will 108 ftw(path, fn, depth) 111 int depth; 198 * If we are about to exceed our depth, 201 if(depth <= 1) { 210 rc = ftw(subpath, fn, depth-1); 213 if(depth > 1 [all...] |
| /onnv/onnv-gate/usr/src/lib/libc/port/gen/ |
| ftw.c | 57 ftw(const char *path, int (*fn)(), int depth) 59 return (_xftw(_XFTWVER, path, fn, depth));
|
| /onnv/onnv-gate/usr/src/lib/libast/common/comp/ |
| ftw.c | 45 ftw(const char* path, int(*userf)(const char*, const struct stat*, int), int depth) 47 NoP(depth);
|
| /onnv/onnv-gate/usr/src/cmd/backup/dump/ |
| lftw.c | 35 * int ftw (path, fn, depth) char *path; int (*fn)(); int depth; 75 * The third argument to ftw does not limit the depth to which 76 * ftw will go. Rather, it limits the depth to which ftw will 118 int depth) 125 rc = (lf_xftw(path, fn, depth, lstat64)); 136 int depth, 139 lf_xftw(char *path, int (*fn)(), int depth, int (*statfn)()) 183 rc = lf_xftw(".", fn, depth-1, statfn); 212 rc = lf_xftw(".", fn, depth-1, statfn) [all...] |
| /onnv/onnv-gate/usr/src/cmd/fs.d/cachefs/cachefspack/ |
| docmds.c | 195 static int depth = 0; local 223 if (depth == 0) { 228 depth++; 242 if ((depth-1) > do_dir) { 243 do_dir = depth - 1; 260 match = ((depth-1) >= sl_cnt); 262 match = ((depth-1) > sl_cnt); 299 printf("depth = %d sl_cnt = %d\n", depth, sl_cnt); 302 if ((depth-1) == sl_cnt) [all...] |
| funcs.c | 47 prtfn(char *pathnam, char *fnam, DIR *dirp, int depth) 57 packfn(char *pathnam, char *fnam, DIR *dirp, int depth) 71 printf("packfn: dirp = %x depth = %d\n", dirp, depth); 124 unpackfn(char *pathnam, char *fnam, DIR *dirp, int depth) 137 printf("unpackfn: dirp = %x depth = %d\n", dirp, depth); 186 inquirefn(char *pathnam, char *fnam, DIR *dirp, int depth) 199 printf("inquirefn: dirp = %x depth = %d\n", dirp, depth); [all...] |
| /onnv/onnv-gate/usr/src/tools/scripts/ |
| mkbfu.sh | 145 find $FILELIST -depth -print 155 find $FILELIST -depth -print 160 find $FILELIST -depth -print 165 find $FILELIST -depth -print 171 find $FILELIST -depth -print 179 find $FILELIST -depth -print | egrep -v -e "./usr/share/src" 188 find $FILELIST -depth -print 194 find $FILELIST -depth -print 205 ( find boot -depth -print | create_archive $ARCHIVECLASS boot ) \
|
| /onnv/onnv-gate/usr/src/cmd/scadm/sparc/mpxu/common/ |
| smq.h | 67 /* smq_depth() returns the depth of the queue. It returns 0 on */ 101 int smq_init(smq_t *smq, smq_msg_t *msgbuffer, int depth); 106 int smq_depth(smq_t *smq, int *depth);
|
| smq.c | 49 smq_init(smq_t *smq, smq_msg_t *msgbuffer, int depth) 60 smq->smq_depth = depth; 145 smq_depth(smq_t *smq, int *depth) 150 *depth = smq->smq_depth;
|
| /onnv/onnv-gate/usr/src/lib/libast/common/cdt/ |
| dtstat.c | 30 static void dttstat(Dtstat_t* ds, Dtlink_t* root, int depth, int* level) 32 static void dttstat(ds,root,depth,level) 35 int depth; 40 dttstat(ds,root->left,depth+1,level); 42 dttstat(ds,root->right,depth+1,level); 43 if(depth > ds->dt_n) 44 ds->dt_n = depth; 46 level[depth] += 1;
|
| /onnv/onnv-gate/usr/src/head/ |
| ftw.h | 175 #define ftw(path, fn, depth) _xftw(_XFTWVER, (path), (fn), (depth)) 179 #define ftw64(path, fn, depth) _xftw64(_XFTWVER, (path), (fn), (depth))
|
| /onnv/onnv-gate/usr/src/cmd/sgs/unifdef/common/ |
| unifdef.c | 73 static int doif(int thissym, int inif, int prevreject, int depth); 79 static int error(int err, int line, int depth); 216 int depth /* depth of ifdef's */ 250 thisreject, depth + 1)) != NO_ERR) 251 return (error(doret, stline, depth)); 257 reject, depth + 1)) != NO_ERR) 258 return (error(doret, stline, depth)); 263 return (error(ELSE_ERR, linenum, depth)); 280 return (error(ENDIF_ERR, linenum, depth)); [all...] |
| /onnv/onnv-gate/usr/src/cmd/acct/lib/ |
| devtolin.c | 81 search its top level for now (set depth = MAX_SEARCH_DEPTH) */ 120 srch_dir(device, path, depth, skip_dirs) 123 int depth; /* current depth */ 136 if ((skip_dirs != NULL) && (depth != 0)) 174 } else if ((depth < MAX_SRCH_DEPTH) && 179 found = srch_dir(device, file_name, depth+1, skip_dirs);
|
| /onnv/onnv-gate/usr/src/uts/sparc/os/ |
| bootdev.c | 104 int depth, old_depth = 0; local 125 for (depth = 0; ndi_dev_is_prom_node(pdip) == 0; depth++) { 126 if (depth == OBP_STACKDEPTH) { 131 pdip = get_parent(pdip, &parinfo[depth]); 133 old_depth = depth; 140 for (depth = old_depth; depth > 0; depth--) { 141 info = &parinfo[depth - 1] [all...] |
| /onnv/onnv-gate/usr/src/cmd/sort/common/ |
| internal.c | 47 * should have already been sorted to that depth). 52 ssize_t depth, flag_t coll_flags) 62 if (collate_fcn(X[0], X[i], depth, coll_flags) > 0) { 64 ASSERT(collate_fcn(X[0], X[i], depth, coll_flags) <= 0); 74 while (collate_fcn(t, X[j - 1], depth, coll_flags) < 0) { 185 rqs_algorithm(line_rec_t **X, ssize_t n, ssize_t depth, 208 offset_is_algorithm(X, n, collate_fcn, depth, coll_flags); 217 v = X[0]->l_collate.usp[depth]; 224 (p = *(X[l]->l_collate.usp + depth) - v) <= 0) { 235 (p = *(X[r]->l_collate.usp + depth) - v) >= 0) [all...] |
| /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/ |
| cyclic.c | 133 int ndx, int l, int r, int depth) 148 (void) mdb_snprintf(&c[depth][x - 1], n, " %d", me); 150 (void) mdb_snprintf(&c[depth][x - 1], n, "%3d", me); 152 (void) mdb_snprintf(&c[depth][x - 1], n, "%s%2d%s", 158 c[++depth][x] = '|'; 159 depth++; 162 c[depth][i] = '-'; 163 c[depth][l + (r - l) / 4] = '+'; 164 c[depth][r - (r - l) / 4 - 1] = '+'; 165 c[depth][x] = '+' 197 int depth; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/util/ |
| make_ext | 73 depth=`echo "$pname" | sed -e 's![^/][^/]*!..!g'` 122 test -f Makefile.PL && ../$depth/miniperl -I../$depth/lib Makefile.PL INSTALLDIRS=perl PERL_CORE=1 $passthru
|
| /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/ustack/ |
| tst.depth.ksh | 82 die "expected depth (\$_) at \$.\n" unless /^(\d+)\$/; 83 \$depth = \$1; 85 for (\$i = 0; \$i < \$depth; \$i++) {
|
| /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/ |
| mb_header.h | 50 unsigned depth; member in struct:multiboot_header
|
| /onnv/onnv-gate/usr/src/lib/libumem/common/ |
| getpcstack.c | 52 * Returns MIN(current stack depth, pcstack_limit). 60 int depth = 0; local 134 while (depth < pcstack_limit) { 183 pcstack[depth++] = fp->fr_savpc; 187 return (depth);
|