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

1 2

  /external/e2fsprogs/lib/ss/
parse.c 28 * parse(line_ptr, argc_ptr)
34 * line_ptr (char *)
46 char **ss_parse(int sci_idx, register char *line_ptr, int *argc_ptr)
63 cp = line_ptr; /* cp is for output */
67 printf ("character `%c', mode %d\n", *line_ptr, parse_mode);
71 if (*line_ptr == '\0')
73 if (*line_ptr == ' ' || *line_ptr == '\t') {
74 line_ptr++;
77 if (*line_ptr == '"')
    [all...]
execute_cmd.c 182 * ss_execute_line(sci_idx, line_ptr)
189 * line_ptr (char *)
197 int ss_execute_line(int sci_idx, char *line_ptr)
203 while (line_ptr[0] == ' ' || line_ptr[0] == '\t')
204 line_ptr++;
207 if (*line_ptr == '!') {
211 line_ptr++;
212 return (system(line_ptr) < 0) ? errno : 0;
217 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/libcups/filter/
rastertohp.c 433 unsigned char *line_ptr, /* Current byte pointer */ local
447 line_ptr = line;
457 for (line_ptr = line, comp_ptr = CompBuffer;
458 line_ptr < line_end;
459 comp_ptr += 2, line_ptr += count)
462 (line_ptr + count) < line_end &&
463 line_ptr[0] == line_ptr[count] &&
468 comp_ptr[1] = line_ptr[0];
471 line_ptr = CompBuffer
    [all...]
rastertoepson.c 417 const unsigned char *line_ptr, /* Current byte pointer */ local
431 line_ptr = line;
494 while (line_ptr < line_end)
496 if ((line_ptr + 1) >= line_end)
503 *comp_ptr++ = *line_ptr++;
505 else if (line_ptr[0] == line_ptr[1])
511 line_ptr ++;
514 while (line_ptr < (line_end - 1) &&
515 line_ptr[0] == line_ptr[1] &
    [all...]
rastertolabel.c 908 unsigned char *line_ptr, /* Current byte pointer */ local
921 line_ptr = line;
927 while (line_ptr < line_end)
933 start = line_ptr;
943 if ((count = (unsigned)(line_end - line_ptr)) > 8)
946 line_ptr += count;
954 while (*line_ptr == *seed &&
955 line_ptr < line_end)
957 line_ptr ++;
961 if (line_ptr == line_end
    [all...]
  /system/bt/osi/src/
config.cc 349 char* line_ptr = trim(line);
353 if (*line_ptr == '\0' || *line_ptr == '#') continue;
355 if (*line_ptr == '[') {
356 size_t len = strlen(line_ptr);
357 if (line_ptr[len - 1] != ']') {
362 strncpy(section, line_ptr + 1, len - 2); // NOLINT (len < 1024)
365 char* split = strchr(line_ptr, '=');
373 config_set_string(config, section, trim(line_ptr), trim(split + 1));
  /toolchain/binutils/binutils-2.27/bfd/
dwarf2.c 1656 bfd_byte *line_ptr; local
    [all...]
coffgen.c     [all...]
ecofflink.c 1986 unsigned char *line_ptr; local
    [all...]
pdp11.c     [all...]
aoutx.h     [all...]
elf64-alpha.c     [all...]
elfnn-aarch64.c     [all...]
elf.c     [all...]
som.c     [all...]
elf32-arm.c     [all...]
elfxx-mips.c     [all...]
  /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);
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_align.c 603 const char *line_ptr; local
626 line_ptr = strtok(bpf_vlog_copy, "\n");
632 while (line_ptr) {
634 sscanf(line_ptr, "%u: ", &cur_line);
637 line_ptr = strtok(NULL, "\n");
639 if (!line_ptr) {
646 if (!strstr(line_ptr, m.match)) {
  /external/libxcam/modules/soft/
soft_image.h 327 uint8_t *line_ptr = buf->get_buf_ptr (0, index); local
329 WARNING, fread (line_ptr, 1, line_bytes, _fp) == line_bytes, XCAM_RETURN_ERROR_FILE,
352 uint8_t *line_ptr = buf->get_buf_ptr (0, index); local
354 WARNING, fwrite (line_ptr, 1, line_bytes, _fp) == line_bytes, XCAM_RETURN_ERROR_FILE,
  /toolchain/binutils/binutils-2.27/opcodes/
opc2c.c 37 char * line_ptr; local
46 line_ptr = line_buf + line_buf_size - 1;
49 *line_ptr = 1;
54 while (line_ptr[0] == 0 && line_ptr[-1] != '\n')
61 line_ptr = line_buf + line_buf_size - 1;
63 *line_ptr = 1;
  /external/minijail/
syscall_filter.c 379 char *line_ptr; local
380 char *arg_filter = strtok_r(line, ";", &line_ptr);
381 char *ret_errno = strtok_r(NULL, ";", &line_ptr);
  /external/libxcam/modules/ocl/
cl_pyramid_blender.cpp 734 SEAM_MASK_TYPE *line_ptr = mask_ptr + line * stride;
737 memset (line_ptr, MASK_1, sizeof (SEAM_MASK_TYPE) * mask_1_len);
738 memset (line_ptr + mask_1_len, MASK_0, sizeof (SEAM_MASK_TYPE) * (stride - mask_1_len));
    [all...]

Completed in 1304 milliseconds

1 2