HomeSort by relevance Sort by last modified time
    Searched defs:strtok_r (Results 1 - 16 of 16) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/string/
strtok.c 37 return strtok_r(s, delim, &last);
41 strtok_r(char *s, const char *delim, char **last) function
  /external/google-breakpad/src/processor/
tokenize.cc 40 #define strtok_r strtok_s macro
57 char *token = strtok_r(line, separators, &save_ptr);
61 token = strtok_r(NULL, separators, &save_ptr);
65 if (remaining == 0 && (token = strtok_r(NULL, "\r\n", &save_ptr))) {
cfi_frame_info.cc 47 #define strtok_r strtok_s macro
137 char *token = strtok_r(working_copy.get(), token_breaks, &cursor);
156 assert(token_len > 0); // strtok_r guarantees this, I think.
161 token = strtok_r(NULL, token_breaks, &cursor);
basic_source_line_resolver.cc 59 #define strtok_r strtok_s macro
126 buffer = strtok_r(memory_buffer, "\r\n", &save_ptr);
184 buffer = strtok_r(NULL, "\r\n", &save_ptr);
433 char *init_or_address = strtok_r(stack_info_line, " \r\n", &cursor);
439 char *address_field = strtok_r(NULL, " \r\n", &cursor);
442 char *size_field = strtok_r(NULL, " \r\n", &cursor);
445 char *initial_rules = strtok_r(NULL, "\r\n", &cursor);
456 char *delta_rules = strtok_r(NULL, "\r\n", &cursor);
  /external/bison/darwin-lib/
time.h 376 # undef strtok_r macro
string.h 1018 # undef strtok_r macro
    [all...]
  /external/bison/lib/
string.in.h 538 See also strtok_r(). */
655 x = strtok_r(s, "-", &sp); // x = "abc", sp = "=-def"
656 x = strtok_r(NULL, "-=", &sp); // x = "def", sp = NULL
657 x = strtok_r(NULL, "=", &sp); // x = NULL
675 # undef strtok_r macro
676 # define strtok_r rpl_strtok_r macro
678 _GL_FUNCDECL_RPL (strtok_r, char *,
682 _GL_CXXALIAS_RPL (strtok_r, char *,
687 # undef strtok_r macro
690 _GL_FUNCDECL_SYS (strtok_r, char *
699 _GL_CXXALIASWARN (strtok_r); variable
706 # undef strtok_r macro
    [all...]
  /external/bison/linux-lib/
time.h 376 # undef strtok_r macro
string.h 1018 # undef strtok_r macro
    [all...]
  /external/valgrind/coregrind/m_gdbserver/
server.h 147 #define strtok_r(p,s,ss) VG_(strtok_r) ((p),(s),(ss)) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
string2.h 1196 # define strtok_r macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string2.h 1196 # define strtok_r macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
string2.h 1196 # define strtok_r macro
    [all...]
  /external/libvpx/libvpx/vpx/src/
svc_encodeframe.c 32 #define strtok_r strtok_s macro
41 #define strtok_r strtok_s macro
216 token = strtok_r(input_string, delim, &save_ptr);
226 token = strtok_r(NULL, delim, &save_ptr);
260 token = strtok_r(input_string, delim, &save_ptr);
270 token = strtok_r(NULL, delim, &save_ptr);
318 token = strtok_r(input_string, delim, &save_ptr);
339 token = strtok_r(NULL, delim, &save_ptr);
375 option_name = strtok_r(input_string, "=", &input_ptr);
378 option_value = strtok_r(NULL, " ", &input_ptr)
    [all...]
  /external/valgrind/coregrind/
m_libcbase.c 437 return VG_(strtok_r) (s, delim, &olds);
441 VG_(strtok_r) (HChar* s, const HChar* delim, HChar** saveptr) function
540 for (input_word = VG_(strtok_r)(tok_input, ",", &input_saveptr);
542 input_word = VG_(strtok_r)(NULL, ",", &input_saveptr)) {
558 for (token = VG_(strtok_r)(tok_tokens, ",", &tokens_saveptr);
560 token = VG_(strtok_r)(NULL, ",", &tokens_saveptr)) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
svc_encodeframe.c 29 #define strtok_r strtok_s macro
38 #define strtok_r strtok_s macro
304 token = strtok_r(input_string, delim, &save_ptr);
314 token = strtok_r(NULL, delim, &save_ptr);
358 token = strtok_r(input_string, delim, &save_ptr);
379 token = strtok_r(NULL, delim, &save_ptr);
416 option_name = strtok_r(input_string, "=", &input_ptr);
419 option_value = strtok_r(NULL, " ", &input_ptr);
451 option_name = strtok_r(NULL, "=", &input_ptr);
    [all...]

Completed in 333 milliseconds