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

  /external/curl/lib/
strtok.h 29 #define strtok_r Curl_strtok_r macro
  /bionic/libc/upstream-openbsd/lib/libc/string/
strtok.c 37 return strtok_r(s, delim, &last);
42 strtok_r(char *s, const char *delim, char **last) function
87 DEF_WEAK(strtok_r); variable
  /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);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
string.h 89 #pragma push_macro("strtok_r")
90 #undef strtok_r macro
91 char *strtok_r(char * __restrict__ _Str, const char * __restrict__ _Delim, char ** __restrict__ __last);
92 #pragma pop_macro("strtok_r")
  /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
  /external/libvpx/libvpx/vpx/src/
svc_encodeframe.c 32 #define strtok_r strtok_s macro
41 #define strtok_r strtok_s macro
172 token = strtok_r(input_string, delim, &save_ptr);
177 token = strtok_r(NULL, delim, &save_ptr);
213 option_name = strtok_r(input_string, "=", &input_ptr);
216 option_value = strtok_r(NULL, " ", &input_ptr);
257 option_name = strtok_r(NULL, "=", &input_ptr);
  /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/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)) {
  /external/libevent/
evdns.c 3268 strtok_r(char *s, const char *delim, char **state) { function
    [all...]

Completed in 394 milliseconds