Searched defs:seen (Results 1 - 16 of 16) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/lex/common/
H A Dyyless.c116 static int seen = 0; local
118 if (!seen) {
122 seen = 1;
/illumos-gate/usr/src/cmd/hal/addons/network-devices/
H A Dcache.c24 * that we have already seen and those that have gone missing. This allows
34 static GHashTable *seen = NULL; variable
75 if (seen != NULL) {
81 g_hash_table_foreach_remove(seen, device_remove_if_stale, args);
92 if (seen == NULL)
93 seen = g_hash_table_new_full(g_str_hash, g_str_equal,
96 result = g_hash_table_lookup_extended(seen, name,
100 g_hash_table_insert(seen, strdup(name), val);
103 HAL_DEBUG(("seen: %s (%d)", name, *val));
/illumos-gate/usr/src/cmd/refer/
H A Dglue5.c391 static struct words *seen[50]; variable in typeref:struct:words
398 if (seen[i] == x)
400 seen[i] = x;
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dkgrep.c85 int seen = 0; local
96 seen = 1;
106 if (seen)
139 int seen = 0; \
153 seen = 1; \
174 if (seen) \
H A Dfindstack.c589 char *seen = NULL; local
737 seen = mdb_zalloc(p.pipe_len, UM_SLEEP | UM_GC);
775 seen[entry - p.pipe_data]++;
902 if (seen[idx] == 0)
H A Dleaky.c324 dups++; /* already seen */
694 int seen = 0; local
708 seen = 1;
714 if (!seen) {
724 if (!dump_verbose || !seen)
/illumos-gate/usr/src/cmd/ldmad/
H A Dmdesc_mutable.h133 char seen; /* seen flag (md_scan_dag/md_scour) */ member in struct:md_node
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dutil.c949 int seen; local
985 seen = 0;
992 if( c==']' ) seen = 1;
999 if( c>=prior_c && c<=c2 ) seen = 1;
1002 seen = 1;
1009 if( c2==0 || (seen ^ invert)==0 ) return 0;
1084 ** But usually the problem will be seen. The result will be an
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.routed/
H A Drtquery.c369 struct seen { struct
370 struct seen *next;
372 } *seen, *sp; local
420 seen = NULL;
460 for (sp = seen; sp != NULL; sp = sp->next) {
468 sp->next = seen;
469 seen = sp;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/kssl/kssladm/
H A Dkssladm_create.c981 boolean_t seen; member in struct:csuite
1012 if (!cipher_suites[i].seen) {
1014 cipher_suites[i].seen = B_TRUE;
/illumos-gate/usr/src/lib/fm/libdiskstatus/common/
H A Dds_scsi.c615 boolean_t seen = B_FALSE; local
632 seen = B_TRUE;
641 if (!seen) {
/illumos-gate/usr/src/common/acl/
H A Dacl_common.c150 int seen; /* bitmask of all aclent_t a_type values seen */ member in struct:ace_list
792 al->seen = 0;
1094 if ((list->seen & (USER_OBJ | GROUP_OBJ | OTHER_OBJ)) !=
1353 acl->seen |= USER_OBJ;
1358 acl->seen |= OTHER_OBJ;
1367 acl->seen |= GROUP_OBJ;
1371 acl->seen |= GROUP;
1387 acl->seen |= USER;
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_acl.c897 mode_t seen = 0; local
923 (!(seen & S_IRUSR))) {
924 seen |= S_IRUSR;
930 (!(seen & S_IWUSR))) {
931 seen |= S_IWUSR;
937 (!(seen & S_IXUSR))) {
938 seen |= S_IXUSR;
946 (!(seen & S_IRGRP))) {
947 seen |= S_IRGRP;
953 (!(seen
[all...]
/illumos-gate/usr/src/boot/sys/sys/
H A Dmount.h141 int seen; member in struct:vfsopt
278 * XXX some of these are not quite right.. (I've never seen the root flag set)
/illumos-gate/usr/src/cmd/ls/
H A Dls.c1710 int mode = 0, seen = 0; local
1735 if (!(seen & S_IRGRP)) {
1736 seen |= S_IRGRP;
1742 if (!(seen & S_IWGRP)) {
1743 seen |= S_IWGRP;
1749 if (!(seen & S_IXGRP)) {
1750 seen |= S_IXGRP;
/illumos-gate/usr/src/uts/common/nfs/
H A Dnfs4_kprot.h390 int seen; /* bitmask of all aclent_t a_type values seen */ member in struct:ace4_list

Completed in 174 milliseconds