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

/osnet-11/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));
/osnet-11/usr/src/grub/grub2/util/
H A Ddeviceiter.c384 } *seen; variable in typeref:struct:seen_device
386 /* Check if DEVICE can be read. Skip any DEVICE that we have already seen.
403 /* Have we seen this device already? */
407 if (grub_named_list_find (GRUB_AS_NAMED_LIST (seen), real_device))
409 grub_dprintf ("deviceiter", "Already seen %s (%s)\n",
496 /* Remember that we've seen this device. */
499 grub_list_push (GRUB_AS_LIST_P (&seen), GRUB_AS_LIST (seen_elt));
512 while (seen)
514 struct seen_device *seen_elt = seen;
515 seen
[all...]
/osnet-11/usr/src/lib/libshadowfs/common/
H A Dshadow_migrate.c216 shadow_load_fidlist(shadow_handle_t *shp, shadow_hash_t *seen, int idx) argument
280 * hash based on FID and ignore those we've already seen.
286 if (shadow_hash_lookup(seen, &ioc.si_fid) != NULL)
293 shadow_hash_insert(seen, fep);
383 shadow_hash_t *seen; local
410 if ((seen = shadow_hash_create(offsetof(shadow_fid_entry_t, sfe_link),
416 if (shadow_load_fidlist(shp, seen, 0) != 0 ||
417 shadow_load_fidlist(shp, seen, 1) != 0)
420 while ((fep = shadow_hash_first(seen)) != NULL) {
421 shadow_hash_remove(seen, fe
[all...]
/osnet-11/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
/osnet-11/usr/src/lib/fm/libdiskstatus/common/
H A Dds_scsi.c626 boolean_t seen = B_FALSE; local
643 seen = B_TRUE;
652 if (!seen) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dregcomp.c123 U32 seen; member in struct:RExC_state_t
151 #define RExC_seen (pRExC_state->seen)
H A Dtoke.c750 * just seen -> and it knows that the next char is a word char, then
1769 char seen[256]; local
1777 Zero(seen,256,char);
1795 weight -= seen[un_char] * 10;
1816 else if (seen['\''] || seen['"'])
1851 weight -= seen[un_char];
1854 seen[un_char]++;

Completed in 147 milliseconds