HomeSort by relevance Sort by last modified time
    Searched refs:line_ptr (Results 1 - 7 of 7) sorted by null

  /external/e2fsprogs/lib/ss/
parse.c 27 * parse(line_ptr, argc_ptr)
33 * line_ptr (char *)
45 char **ss_parse(int sci_idx, register char *line_ptr, int *argc_ptr)
62 cp = line_ptr; /* cp is for output */
66 printf ("character `%c', mode %d\n", *line_ptr, parse_mode);
70 if (*line_ptr == '\0')
72 if (*line_ptr == ' ' || *line_ptr == '\t') {
73 line_ptr++;
76 if (*line_ptr == '"')
    [all...]
execute_cmd.c 181 * ss_execute_line(sci_idx, line_ptr)
188 * line_ptr (char *)
196 int ss_execute_line(int sci_idx, char *line_ptr)
202 while (line_ptr[0] == ' ' || line_ptr[0] == '\t')
203 line_ptr++;
206 if (*line_ptr == '!') {
210 line_ptr++;
211 return (system(line_ptr) < 0) ? errno : 0;
216 argv = ss_parse(sci_idx, line_ptr, &argc)
    [all...]
ss_internal.h 85 int ss_execute_line(int sci_idx, char *line_ptr);
86 char **ss_parse(int sci_idx, char *line_ptr, int *argc_ptr);
  /external/aac/libSYS/src/
cmdl_parser.cpp 513 char *line_ptr; local
541 line_ptr = (char*)FDKstrchr(line, '\n');
542 if (line_ptr != NULL)
543 *line_ptr = ' ';
545 line_ptr = line;
550 while (*line_ptr == ' ' && line_ptr < line+CMDL_MAX_STRLEN)
551 line_ptr++;
553 argv_ptr[argc] = line_ptr;
555 line_ptr = (char*)FDKstrchr(line_ptr, ' ')
    [all...]
  /system/bt/osi/src/
config.c 331 char *line_ptr = trim(line); local
335 if (*line_ptr == '\0' || *line_ptr == '#')
338 if (*line_ptr == '[') {
339 size_t len = strlen(line_ptr);
340 if (line_ptr[len - 1] != ']') {
344 strncpy(section, line_ptr + 1, len - 2);
347 char *split = strchr(line_ptr, '=');
354 config_set_string(config, section, trim(line_ptr), trim(split + 1));
  /external/google-breakpad/src/processor/
fast_source_line_resolver_types.h 57 void CopyFrom(const Line *line_ptr) {
58 const char *raw = reinterpret_cast<const char*>(line_ptr);
fast_source_line_resolver.cc 89 const Line* line_ptr = 0; local
91 if (func->lines.RetrieveRange(address, line_ptr, &line_base, NULL)) {
92 line.get()->CopyFrom(line_ptr);

Completed in 138 milliseconds