Lines Matching refs:key

47  * automountKey: contains the key i.e. the mount point
259 getmapent_ldap(char *key, char *map, struct mapline *ml,
271 trace_prt(1, "getmapent_ldap: key=[ %s ]\n", key);
276 nserr = ldap_match(map, key, &ldap_line, &ldap_len);
325 ldap_match(char *map, char *key, char **ldap_line, int *ldap_len)
337 trace_prt(1, "ldap_match: key =[ %s ]\n", key);
341 * need to handle uppercase characters in the key because LDAP
342 * searches are case insensitive. Note, key = attribute automountKey.
345 ldapkey = tosunds_str(key);
347 ldapkey = key;
407 * point (key).
410 * key: /work
433 *ldap_len = strlen(key) + strlen(attrval);
443 map, key, (*ldap_len + 2), LINESZ);
623 char *key, *contents, *pmap, *opts;
645 * nisMapEntry attributes and the length of each value (cn=key,
653 key = NULL;
687 key = key_temp;
688 key_len = strlen(key);
691 "mastermap_callback_ldap: key=[ %s ],"
693 key, key_len);
707 if (isspace(*key) || *key == '#')
710 (void) strncpy(dir, key, key_len);
783 char *key;
795 * the contents of key and its key length.
798 key = NULL;
805 key = tounix_str(attr->attrvalue[0]);
807 key = attr->attrvalue[0];
808 key_len = strlen(key);
816 if (isspace(*key) || *key == '#')
818 (void) strncpy(dir, key, key_len);
899 char *key;
910 * contents of key and its key length.
913 key = NULL;
931 key = tounix_str(attr->attrvalue[0]);
933 key = attr->attrvalue[0];
934 key_len = strlen(key);
938 "readdir_callback: key=[ %s ], key_len=[ %d ]\n",
939 key, key_len);
948 if (isspace(*key) || *key == '#')
954 * LDAP, i.e., first for an exact key match and then a wildcard
955 * if there's no exact key match.
957 if (key[0] == '*' && key[1] == '\0')
960 if (add_dir_entry(key, list, &last)) {