Lines Matching refs:maps
44 "maps(domain = defaultdomain)\n\
45 Returns an array of all available NIS maps within a domain. If domain\n\
308 nismaplist *maps;
367 if (!xdr_pointer(xdrs, (char **)&objp->maps,
423 return list->maps;
434 nismaplist *maps;
440 "|s:maps", kwlist, &domain)) {
450 if ((maps = nis_maplist(state, domain)) == NULL) {
456 for (; maps; maps = maps->next) {
457 PyObject *str = PyUnicode_FromString(maps->map);
467 /* XXX Shouldn't we free the list of maps now? */
478 {"maps", _PyCFunction_CAST(nis_maps),
510 "This module contains functions for accessing NIS maps.\n");