Home
last modified time | relevance | path

Searched refs:line (Results 1 – 25 of 1461) sorted by last modified time

12345678910>>...59

/illumos-gate/usr/src/lib/libc/port/
H A Dmapfile-vers1186 # atomic_add_64. If that is changed, this line should be removed.
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_ioctl.c328 __dprintf(const char *file, const char *func, int line, const char *fmt, ...) in __dprintf() argument
359 char *, newfile, char *, func, int, line, char *, buf); in __dprintf()
/illumos-gate/usr/src/lib/fm/topo/modules/common/zen/
H A Dtopo_zen_tn.c138 uint32_t level, type, ways, line; in topo_zen_build_cache() local
153 FM_CACHE_INFO_LINE_SIZE, DATA_TYPE_UINT32, &line, in topo_zen_build_cache()
188 TOPO_PGROUP_CACHE_LINE_SIZE, TOPO_TYPE_UINT32, line, in topo_zen_build_cache()
/illumos-gate/usr/src/boot/i386/libi386/
H A Dbiosdisk.c706 char line[80]; in bd_print_common() local
735 snprintf(line, sizeof (line), in bd_print_common()
742 if ((ret = pager_output(line)) != 0) in bd_print_common()
758 snprintf(line, sizeof (line), " %s%d", in bd_print_common()
760 ret = disk_print(&devd, line, verbose); in bd_print_common()
/illumos-gate/usr/src/data/hwdata/
H A Dusb.ids17482 80a0 LC100 series smart line camera
24091 AT 0501 Phone line
H A Dpci.ids16417 0010 16-line serial port w/- DMA
16418 0011 4-line serial port w/- DMA
27374 de01 DL200ME High resolution delay line PCI based card
27375 de02 DL200ME Middle resolution delay line PCI based card
/illumos-gate/usr/src/lib/libzpool/common/
H A Dkernel.c331 __dprintf(const char *file, const char *func, int line, const char *fmt, ...) in __dprintf() argument
360 (void) printf("%s, line %d: ", newfile, line); in __dprintf()
/illumos-gate/usr/src/uts/
H A DREADME49 on-line as "terminator:/usr/integration/doc/make.std")
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dhsearch.c149 char line[80]; /* Room for the input line */ in main() local
164 until(EOF == scanf("%s", line) || strcmp(line, "quit") == 0); in main()
166 printf("%s, ", line); in main()
167 printf("division: %d, ", hashd(line)); in main()
168 printf("multiplication: %d\n", hashm(line)); in main()
175 new->key = malloc((unsigned)strlen(line) + 1); in main()
180 (void) strcpy(new->key, line); in main()
198 if (EOF == scanf("%s", line) || strcmp(line, "no") == 0) in main()
/illumos-gate/usr/src/data/terminfo/
H A Dterminfo.src167 # -ns No status line - suppress status line
4716 # a line.
5337 # line.
7330 # be selected in the status line (setup line 9).
8116 # turn off status line (\Eg) clear status line (\Ef\r)
9189 # 24 line screen with status line.
9461 # Wyse 370 -- 24 line screen with status line.
9826 # line).
10064 # This line:
12201 lf3=A insert line, lf4=A delete line, lf5=A clear,
[all …]
H A Dtermcap.src167 # -ns No status line - suppress status line
4123 # a line.
4682 # line.
6506 # be selected in the status line (setup line 9).
7269 # turn off status line (\Eg) clear status line (\Ef\r)
8201 # 24 line screen with status line.
8426 # Wyse 370 -- 24 line screen with status line.
8747 # line).
8964 # This line:
10795 :l2=A delete char:l3=A insert line:l4=A delete line:\
[all …]
/illumos-gate/usr/src/cmd/ttymon/
H A Dtmextern.h148 extern int checkut_line(char *line);
/illumos-gate/usr/src/cmd/svc/svcs/
H A Dsvcs.c175 do_scfdie(const char *file, int line) in do_scfdie() argument
178 file, line, scf_strerror(scf_error())); in do_scfdie()
2909 add_processes(scf_walkinfo_t *wip, char *line, scf_propertygroup_t *lpg) in add_processes() argument
2916 return (line); in add_processes()
2931 return (line); in add_processes()
2944 line = realloc(line, strlen(line) + len); in add_processes()
2945 if (line == NULL) in add_processes()
2948 cp = strchr(line, '\0'); in add_processes()
2988 return (line); in add_processes()
/illumos-gate/usr/src/cmd/ptools/pstack/
H A Dpstack.c540 int line, void *handle) in print_java_frame() argument
548 if (line) in print_java_frame()
549 (void) printf(" (line %d)", line); in print_java_frame()
/illumos-gate/usr/src/cmd/pools/poolstat/
H A Dpoolstat.c639 char *line; in prt_stat_line() local
644 line = ZALLOC(len); in prt_stat_line()
656 line = REALLOC(line, len); in prt_stat_line()
665 line[pos++] = ' '; in prt_stat_line()
671 (void) printf("%s\n", line); in prt_stat_line()
672 FREE(line); in prt_stat_line()
683 char *line; in prt_stat_hd() local
697 line = ZALLOC(len); in prt_stat_hd()
709 line = REALLOC(line, len); in prt_stat_hd()
718 line[pos++] = ' '; in prt_stat_hd()
[all …]
/illumos-gate/usr/src/cmd/pools/poold/
H A Dpoold.c144 char line[255] = ""; in pu_output() local
150 (void) snprintf(line, sizeof (line), gettext(PNAME_FMT), pname); in pu_output()
152 (void) vsnprintf(line + strlen(line), sizeof (line) - strlen(line), in pu_output()
155 if (line[strlen(line) - 1] != '\n') in pu_output()
156 (void) snprintf(line + strlen(line), sizeof (line) - in pu_output()
157 strlen(line), gettext(ERRNO_FMT), strerror(err)); in pu_output()
159 line[strlen(line) - 1] = 0; in pu_output()
163 (void) fprintf(stderr, "%s\n", line); in pu_output()
167 syslog(LOG_ERR, "%s", line); in pu_output()
177 if ((jline = (*env)->NewStringUTF(env, line)) != NULL) in pu_output()
/illumos-gate/usr/src/cmd/init/
H A Dinit.c922 init_bootbanner_print(const char *line, uint_t num) in init_bootbanner_print() argument
926 console(B_FALSE, "%s%s\r\n", pfx, line); in init_bootbanner_print()
2012 char line[MAXCMDL]; in boot_init() local
2027 while (getcmd(&cmd, &line[0]) == TRUE) { in boot_init()
2029 process_startd_line(&cmd, line); in boot_init()
/illumos-gate/usr/src/cmd/idmap/idmap/
H A Didmap_engine.c214 line2array(const char *line) in line2array() argument
266 (void) line2array(line); in CPL_MATCH_FN()
278 if (isspace(line[word_end - 1])) in CPL_MATCH_FN()
288 (void) cpl_add_completion(cpl, line, in CPL_MATCH_FN()
329 (void) cpl_add_completion(cpl, line, in CPL_MATCH_FN()
347 const char *line; in interactive_interp() local
369 if (line == NULL) { in interactive_interp()
390 if (line2array(line) < 0) { in interactive_interp()
428 char line[MAX_CMD_LINE_SZ]; in source_interp() local
444 pos.line = line; in source_interp()
[all …]
/illumos-gate/usr/src/cmd/dtrace/
H A Ddtrace.c459 int nmods, line; in etcsystem_add() local
466 for (line = 0; g_etc[line] != NULL; line++) in etcsystem_add()
467 oprintf("%s\n", g_etc[line]); in etcsystem_add()
477 for (line = 0; line < nmods; line++) in etcsystem_add()
478 oprintf("forceload: drv/%s\n", mods[line]); in etcsystem_add()
/illumos-gate/usr/src/cmd/devfsadm/
H A Ddevfsadm.c6017 while (fgets(line, sizeof (line), fp) != NULL) { in load_n2m_table()
6023 if (is_blank(line)) in load_n2m_table()
6111 while (fgets(line, sizeof (line), fp) != NULL) { in read_enumerate_file()
6215 while (fgets(line, sizeof (line), fp) != NULL) { in read_devlinktab_file()
6217 i = strlen(line); in read_devlinktab_file()
6219 line[i-1] = '\0'; in read_devlinktab_file()
7590 char line[256]; in read_driver_aliases_file() local
7630 while (fgets(line, sizeof (line), afd) != NULL) { in read_driver_aliases_file()
7638 cp = line; in read_driver_aliases_file()
8452 is_blank(char *line) in is_blank() argument
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/
H A Dnwamcfg.c888 if (fgets(line, sizeof (line), stdin) == NULL) in ask_yesno()
891 if (line[0] == '\n') in ask_yesno()
893 if (tolower(line[0]) == 'y') in ask_yesno()
895 if (tolower(line[0]) == 'n') in ask_yesno()
974 char *line; in read_input() local
1007 line = gl_get_line(gl, prompt, NULL, -1); in read_input()
1012 if (line == NULL) in read_input()
1014 if (string_to_yyin(line) != NWAM_OK) in read_input()
4063 char line[NWAM_MAX_VALUE_LEN]; in walkprop_func() local
4108 if (fgets(line, sizeof (line), stdin) == NULL) in walkprop_func()
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Dndp.c919 char *line = NULL, *lasts = NULL, *curr; in ndp_set_file() local
933 while (getline(&line, &cap, stream) != -1) { in ndp_set_file()
936 if (line[0] == '#') in ndp_set_file()
939 host = strtok_r(line, WORDSEPS, &lasts); in ndp_set_file()
968 free(line); in ndp_set_file()
H A Din.telnetd.c250 static char *line; variable
2778 line = subsidname; in doit()
3113 tt = open(line, O_RDWR); in doit()
3115 fatalperror(netfd, line, errno); in doit()
3143 (void) strncpy(ut.ut_line, line, sizeof (ut.ut_line)); in doit()
H A Din.rlogind.c349 static char *line; variable
1063 if ((line = ptsname(p)) == NULL) in doit()
1065 if ((t = open(line, O_RDWR)) == -1) in doit()
1147 (void) strncpy(ut.ut_line, line, sizeof (ut.ut_line)); in doit()
1163 if ((tt = open(line, O_RDWR)) == -1) in doit()
1187 "-d", line, in doit()
1198 "-d", line, in doit()
/illumos-gate/usr/src/cmd/acct/lib/
H A Dpnpsplit.c192 int line = 0, in inithol() local
216 else if(++line == 1) { /* format: year p-start np-start */ in inithol()

12345678910>>...59