Home
last modified time | relevance | path

Searched refs:map (Results 1 – 17 of 17) sorted by relevance

/busybox-1.35.0/scripts/basic/
Dfixdep.c226 void parse_config_file(char *map, size_t len) in parse_config_file() argument
229 unsigned char *end_3 = (unsigned char *)map + len - 3; /* 3 == length of "IF_" */ in parse_config_file()
230 unsigned char *end_7 = (unsigned char *)map + len - 7; in parse_config_file()
231 unsigned char *p = (unsigned char *)map; in parse_config_file()
287 void *map; in do_config_file() local
300 map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in do_config_file()
301 if ((long) map == -1) { in do_config_file()
307 parse_config_file(map, st.st_size); in do_config_file()
309 munmap(map, st.st_size); in do_config_file()
314 void parse_dep_file(void *map, size_t len) in parse_dep_file() argument
[all …]
/busybox-1.35.0/networking/
Dhttpd_helpers.sh18 -Wl,-Map -Wl,index.cgi.map \
23 -Wl,-Map -Wl,httpd_ssi.map \
Dinterface.c327 struct ifmap map; /* hardware setup */ member
626 ife->map = ifr.ifr_map; in if_fetch()
934 printf("Media:%s", if_port_text[ptr->map.port] /* [0] */); in ife_print()
1049 if (ptr->map.irq || ptr->map.mem_start in ife_print()
1050 || ptr->map.dma || ptr->map.base_addr in ife_print()
1053 if (ptr->map.irq) in ife_print()
1054 printf("Interrupt:%d ", ptr->map.irq); in ife_print()
1055 if (ptr->map.base_addr >= 0x100) /* Only print devices using it for I/O maps */ in ife_print()
1057 (unsigned long) ptr->map.base_addr); in ife_print()
1058 if (ptr->map.mem_start) { in ife_print()
[all …]
Difupdown.c1263 static char *run_mapping(char *physical, struct mapping_defn_t *map) in run_mapping() argument
1272 pid = popen2(&in, &out, map->script, physical); in run_mapping()
1275 for (i = 0; i < map->n_mappings; i++) { in run_mapping()
1276 fprintf(in, "%s\n", map->mapping[i]); in run_mapping()
Dtls_sp_c32.c1361 enum { map = 1 }; /* we always convert result to affine coordinates */ in sp_256_ecc_mulmod_8() enumerator
1407 if (map) in sp_256_ecc_mulmod_8()
/busybox-1.35.0/console-tools/
Dloadfont.c458 void *map; in setfont_main() local
467 map = xmalloc_open_zipped_read_close(mapfilename, &len); in setfont_main()
468 if (!map) in setfont_main()
487 free(map); in setfont_main()
488 map = xmalloc(E_TABSZ * sizeof(unsigned short)); in setfont_main()
490 #define unicodes ((unsigned short *)map) in setfont_main()
515 #define asciis ((unsigned char *)map) in setfont_main()
525 xioctl(fd, mode, map); in setfont_main()
528 free(map); in setfont_main()
/busybox-1.35.0/util-linux/
Dreadprofile.c66 FILE *map; in readprofile_main() local
164 map = xfopen_for_read(mapFile); in readprofile_main()
167 while (fgets(mapline, S_LEN, map)) { in readprofile_main()
187 while (fgets(mapline, S_LEN, map)) { in readprofile_main()
268 fclose(map); in readprofile_main()
/busybox-1.35.0/archival/
Drpm.c83 void *map; member
150 G.map = mmap_read(fd, storepos); in rpm_gettags()
151 if (G.map == MAP_FAILED) in rpm_gettags()
175 char *tmpstr = (char *) G.map + found->offset; in rpm_getstr()
200 tmpint = (char *) G.map + found->offset; in rpm_getint()
276 char *str = (char *) G.map + tag->offset;
486 munmap(G.map, G.mapsize); in rpm_main()
/busybox-1.35.0/modutils/
DConfig.src94 bool "Enable insmod load map (-m) option"
98 Enabling this, one would be able to get a load map
105 bool "Symbols in load map"
110 load map. With this option, -m will also output
111 symbols load map.
Dmodprobe-small.c1024 void *map; in modprobe_main() local
1027 map = xmalloc_open_zipped_read_close(*argv, &len); in modprobe_main()
1028 if (!map) in modprobe_main()
1030 if (init_module(map, len, in modprobe_main()
/busybox-1.35.0/
Dmake_single_applets.sh85 grep ^bb_common_bufsiz1 busybox_unstripped.map
DMakefile663 $(cmd_sysmap) .tmp_busybox$(last_kallsyms) .tmp_System.map
664 $(Q)cmp -s System.map .tmp_System.map || \
943 …if [ -r System.map -a -x $(DEPMOD) ]; then $(DEPMOD) -ae -F System.map $(depmod_opts) $(KERNELRELE…
970 System.map .kernelrelease \
971 .tmp_kallsyms* .tmp_version .tmp_busybox* .tmp_System.map
1121 cmd_depmod = if [ -r System.map -a -x $(DEPMOD) ]; then \
1122 $(DEPMOD) -ae -F System.map \
DNOFORK_NOEXEC.lst212 loadfont - noexec. leaks: config_open+bb_error_msg_and_die("map format")
298 readprofile - reads /boot/System.map and /proc/profile, better to free more memory by execing?
/busybox-1.35.0/coreutils/
Dtr.c74 static void map(char *pvector, in map() function
313 map(vector, str1, str1_length, in tr_main()
/busybox-1.35.0/scripts/
DMakefile.build210 System.map $(OBJDUMP) > $@
/busybox-1.35.0/examples/var_service/
DREADME_distro_proposal.txt232 Options map to up/down/once/STOP/CONT/HUP/ALRM/INT/TERM/KILL/exit
/busybox-1.35.0/miscutils/
Dbc.c5283 BcVec *v, *map; in xc_program_search() local
5289 map = var ? &G.prog.var_map : &G.prog.arr_map; in xc_program_search()
5293 new = bc_map_insert(map, &e, &i); // 1 if insertion was successful in xc_program_search()
5301 ptr = bc_vec_item(map, i); in xc_program_search()