Searched defs:maps (Results 1 - 12 of 12) sorted by relevance

/illumos-gate/usr/src/lib/libast/common/string/
H A Dccmapid.c35 static const Ccmap_t maps[] = variable
128 return !mp ? (Ccmap_t*)maps : (++mp)->name ? mp : (Ccmap_t*)0;
146 for (mp = maps; mp->name; mp++)
169 for (mp = maps; mp->name; mp++)
H A Dccmap.c28 * dynamic single byte character code maps
620 static Map_t* maps; variable
662 for (map = maps; map; map = map->next)
675 map->next = maps;
676 maps = map;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_nis.c121 "Return list of supported maps", /* 11 */
623 int maps = 0; local
626 (void) sprintf(buff, "%d+ maps", maps);
632 maps++;
635 (void) sprintf(buff, "%d maps", maps);
642 int maps = 0; local
646 " %d+ maps. (Frame is incomplete)",
647 maps);
[all...]
H A Dsnoop_pmap.c278 int maps = 0; local
282 (void) sprintf(buff, "%d+ map(s) found", maps);
291 maps++;
294 (void) sprintf(buff, "%d map(s) found", maps);
302 int maps = 0; local
306 " %d+ maps. (Frame is incomplete)",
307 maps);
321 maps++;
324 (void) sprintf(get_line(0, 0), " %d maps", maps);
614 int maps = 0; local
641 int maps = 0; local
674 int maps = 0; local
703 int maps = 0; local
[all...]
/illumos-gate/usr/src/cmd/sgs/libcrle/common/
H A Ddump.c207 prmap_t *maps, *_maps; local
265 if ((maps = alloca(size)) == 0) {
272 if (read(fd, (void *)maps, size) < 0) {
301 for (_num = 0, _maps = maps; _num < num; _num++, _maps++) {
/illumos-gate/usr/src/lib/libsum/common/
H A Dsumlib.c204 static const Map_t maps[] = variable
280 for (n = 0; n < elementsof(maps); n++)
281 if (match(name, maps[n].match))
283 name = maps[n].map;
373 for (i = 0; i < elementsof(maps); i++)
374 n += sfprintf(sp, "[+%s?%s Shorthand for \b%s\b.]", maps[i].match, maps[i].description, maps[i].map);
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_tty.h144 struct maps { struct
146 unsigned char *mapto; /* .. maps to this string */
149 void kpadd(struct maps *, unsigned char *, unsigned char *, unsigned char *);
150 var struct maps arrows[MAXNOMACS]; /* macro defs - 1st 5 built in */
151 var struct maps immacs[MAXNOMACS]; /* for while in insert mode */
152 var struct maps abbrevs[MAXNOMACS]; /* for word abbreviations */
/illumos-gate/usr/src/lib/libnisdb/
H A Dnis_parse_ldap_yp_util.c1165 char *maps = *mapname; local
1166 int maplen = strlen(maps);
1170 maps[maplen - 1] == PERIOD_CHAR)
1172 else if (strchr(maps, COMMA_CHAR)) {
1176 append_comma(&maps);
1177 maplen = strlen(maps);
1178 maps = realloc(maps, (maplen + domainlen + 1));
1179 if (maps != NULL) {
1180 if (strlcat(maps, domainnam
[all...]
/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_mapping.c831 ns_ldap_attribute_map_t ***maps,
834 *maps = NULL;
839 __ns_ldap_freeAttributeMaps(ns_ldap_attribute_map_t ***maps) argument
845 if (*maps == NULL)
847 for (dptr = *maps; (ptr = *dptr) != NULL; dptr++) {
860 free(*maps);
861 *maps = NULL;
914 ns_ldap_objectclass_map_t ***maps,
917 *maps = NULL;
922 __ns_ldap_freeObjectClassMaps(ns_ldap_objectclass_map_t ***maps) argument
829 __ns_ldap_getAttributeMaps( const char *service, ns_ldap_attribute_map_t ***maps, ns_ldap_error_t **errorp) argument
912 __ns_ldap_getObjectClassMaps( const char *service, ns_ldap_objectclass_map_t ***maps, ns_ldap_error_t **errorp) argument
[all...]
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Da.out.c237 * recorded in the link maps. If we are presently
463 * link maps.
677 * individual link-maps we don't need to supply a starting link-map to the
727 prmap_t *maps; local
746 if ((maps = malloc((num + 1) * sizeof (prmap_t))) == NULL)
749 if (ioctl(fd, PIOCMAP, (void *)maps) == -1) {
752 free(maps);
756 mpp->mr_addr = maps->pr_vaddr;
757 mpp->mr_fsize = mpp->mr_msize = maps->pr_size;
760 mpp++, maps
[all...]
/illumos-gate/usr/src/cmd/fs.d/udfs/fstyp/
H A Dud_lib.h114 * after translating using maps and partitions
225 struct ud_map maps[MAX_MAPS]; member in struct:ud_handle
/illumos-gate/usr/src/cmd/ptools/pmap/
H A Dpmap.c162 static mapdata_t *maps; variable
265 "\t\t(report process address maps)\n");
269 "\t\t(report process address maps lgroups mappings)\n");
282 "\t-r: show reserved address maps\n");
674 maps[map_count - 1].md_last = B_TRUE;
1179 newmaps = realloc(maps, next * sizeof (mapdata_t));
1181 (void) perr("failed to allocate maps");
1188 maps = newmaps;
1191 return (&maps[map_count++]);
1246 if ((ret = func(data, &maps[
[all...]

Completed in 132 milliseconds