Lines Matching +refs:val +refs:result
39 gboolean result = FALSE;
42 time_t *val = value;
44 HAL_DEBUG(("test stale: %s (%d > %d)", name, args->timestamp, *val));
45 if (args->timestamp > *val) {
63 result = TRUE;
69 return (result);
88 gboolean result;
90 time_t *val;
96 result = g_hash_table_lookup_extended(seen, name,
97 (gpointer)&key, (gpointer)&val);
99 if ((result == FALSE) && ((val = calloc(1, sizeof (*val))) != NULL)) {
100 g_hash_table_insert(seen, strdup(name), val);
102 (void) time(val);
103 HAL_DEBUG(("seen: %s (%d)", name, *val));
105 return (result);