Searched refs:line_ptr (Results 1 – 8 of 8) sorted by relevance
/titanic_41/usr/src/lib/krb5/ss/ |
H A D | parse.c | 50 int ss_parse (sci_idx, line_ptr, argc_ptr, argv_ptr, quiet) in ss_parse() argument 52 register char *line_ptr; 74 cp = line_ptr; /* cp is for output */ 78 printf ("character `%c', mode %d\n", *line_ptr, parse_mode); 82 if (*line_ptr == '\0') 84 if (*line_ptr == ' ' || *line_ptr == '\t') { 85 line_ptr++; 88 if (*line_ptr == '"') { 91 cp = line_ptr++; 99 cp = line_ptr; [all …]
|
H A D | execute_cmd.c | 192 int ss_execute_line (sci_idx, line_ptr) in ss_execute_line() argument 194 char *line_ptr; 200 while (line_ptr[0] == ' ' || line_ptr[0] == '\t') 201 line_ptr++; 204 if (*line_ptr == '!') { 208 line_ptr++; 209 system(line_ptr); 216 (void) ss_parse(sci_idx, line_ptr, &argc, &argv, 0);
|
/titanic_41/usr/src/tools/ctf/dwarf/common/ |
H A D | dwarf_sort_line.c | 73 _dwarf_update_line_sec(Dwarf_Small * line_ptr, 141 Dwarf_Small *line_ptr; /* starts at orig_line_ptr, gets in dwarf_ld_sort_lines() local 165 line_ptr = malloc(buffer_len); in dwarf_ld_sort_lines() 166 if (!line_ptr) { in dwarf_ld_sort_lines() 170 orig_line_ptr = line_ptr; in dwarf_ld_sort_lines() 171 memcpy(line_ptr, orig_buffer, buffer_len); in dwarf_ld_sort_lines() 180 for (sec_res = _dwarf_update_line_sec(line_ptr, in dwarf_ld_sort_lines() 187 sec_res = _dwarf_update_line_sec(line_ptr, in dwarf_ld_sort_lines() 192 long bytes_used = new_line_ptr - line_ptr; in dwarf_ld_sort_lines() 194 line_ptr = new_line_ptr; in dwarf_ld_sort_lines() [all …]
|
H A D | dwarf_print_lines.c | 99 Dwarf_Small *line_ptr = 0; in _dwarf_internal_printlines() local 215 line_ptr = dbg->de_debug_line.dss_data + line_offset; in _dwarf_internal_printlines() 244 line_ptr,dbg->de_debug_line.dss_size - line_offset, in _dwarf_internal_printlines() 260 line_ptr = line_ptr_out; in _dwarf_internal_printlines() 347 offset = line_ptr - orig_line_ptr; in _dwarf_internal_printlines() 360 while (line_ptr < line_ptr_end) { in _dwarf_internal_printlines() 364 (Dwarf_Signed) (line_ptr - orig_line_ptr)); in _dwarf_internal_printlines() 365 opcode = *(Dwarf_Small *) line_ptr; in _dwarf_internal_printlines() 366 line_ptr++; in _dwarf_internal_printlines() 369 prefix.pf_opcode_length_table, line_ptr, in _dwarf_internal_printlines() [all …]
|
H A D | dwarf_line.c | 106 Dwarf_Small *line_ptr; in dwarf_srcfiles() local 180 line_ptr = dbg->de_debug_line.dss_data + line_offset; in dwarf_srcfiles() 208 line_ptr, in dwarf_srcfiles() 224 line_ptr = line_ptr_out; in dwarf_srcfiles() 335 Dwarf_Small *line_ptr = 0; in _dwarf_internal_srclines() local 455 line_ptr = dbg->de_debug_line.dss_data + line_offset; in _dwarf_internal_srclines() 483 line_ptr, in _dwarf_internal_srclines() 500 line_ptr = newlinep; in _dwarf_internal_srclines() 551 while (line_ptr < line_ptr_end) { in _dwarf_internal_srclines() 554 opcode = *(Dwarf_Small *) line_ptr; in _dwarf_internal_srclines() [all …]
|
H A D | dwarf_line.h | 202 #define WHAT_IS_OPCODE(type,opcode,base,opcode_length,line_ptr,highest_std) \ argument
|
/titanic_41/usr/src/lib/libcurses/screen/ |
H A D | wborder.c | 83 chtype *line_ptr, variables[8]; in wborder() local 125 memSset((line_ptr = &_y[0][sx]), _TOPSIDE, endx); in wborder() 127 *(--line_ptr) = _TOPLEFT; in wborder() 129 line_ptr[++endx] = _TOPRIGHT; in wborder() 149 memSset((line_ptr = &_y[endy][sx]), _BOTTOMSIDE, endx); in wborder() 151 *--line_ptr = _BOTTOMLEFT; in wborder() 153 line_ptr[++endx] = _BOTTOMRIGHT; in wborder()
|
/titanic_41/usr/src/lib/libtecla/common/ |
H A D | getline.c | 7836 char *line_ptr = gl->line; in KT_KEY_FN() local 7841 while(*undo_ptr && *line_ptr) { in KT_KEY_FN() 7843 *undo_ptr++ = *line_ptr; in KT_KEY_FN() 7844 *line_ptr++ = c; in KT_KEY_FN() 7850 strlcpy(undo_ptr, line_ptr, gl->linelen); in KT_KEY_FN() 7851 *line_ptr = '\0'; in KT_KEY_FN() 7853 strlcpy(line_ptr, undo_ptr, gl->linelen); in KT_KEY_FN()
|