Lines Matching defs:entry

436  * Add a mapfs entry to the list described by *mfs_head and *mfs_tail,
547 * entry. It preserves previous behaviour of sorting first by
968 * on this entry now.
1061 * ping every entry, so we'll stop here. This means
1063 * to consider another entry if we can't get
1141 * mount, we haven't done a pingnfs() on the next entry,
1142 * so we don't know if the next entry is up or if it
1144 * with an entry, we need to go back and run through some new
1209 * Skip entry if we already have file handle but the
1939 "error getting default security entry\n");
2289 * At least one entry, can call mount(2).
2547 * Returns 1 if the entry is found in the cache, 0 otherwise.
2581 * We stumbled across an entry in the cache which
2584 * be after this entry. And adjust neighboring
2599 * Make the tail point to the new last entry.
2705 * the same cache entry. This can be avoided by walking the cache
3212 * entry.
3695 * Put a new entry in the cache chain by prepending it to the front.
3706 struct cache_entry *entry;
3711 entry = (struct cache_entry *)malloc(sizeof (struct cache_entry));
3712 if (entry == NULL)
3714 (void) memset((caddr_t)entry, 0, sizeof (struct cache_entry));
3715 entry->cache_host = strdup(host);
3716 if (entry->cache_host == NULL) {
3717 cache_free(entry);
3720 entry->cache_reqvers = reqvers;
3721 entry->cache_outvers = outvers;
3722 entry->cache_proto = (proto == NULL ? NULL : strdup(proto));
3723 entry->cache_state = state;
3724 entry->cache_time = timenow + cache_time;
3729 entry->cache_next = cache_head;
3730 cache_head = entry;
3805 * Free a cache entry and all entries
3810 cache_free(entry)
3811 struct cache_entry *entry;
3815 for (ce = entry; ce; ce = next) {
4039 * Find the mnttab entry that corresponds to "name".
4042 * Return the last entry in the file that matches.
4168 /* Check that mountpoint is an auto_home entry */
4174 /* Check that source is an home directory entry */