Searched defs:delim (Results 51 - 75 of 115) sorted by relevance

12345

/external/linux-tools-perf/util/scripting-engines/
H A Dtrace-event-python.c107 const char *delim)
126 PyTuple_SetItem(t, n++, PyString_FromString(delim));
158 args->flags.delim);
104 define_field(enum print_arg_type field_type, const char *ev_name, const char *field_name, const char *delim) argument
/external/qemu/distrib/sdl-1.2.15/src/cdrom/beos/
H A DSDL_syscdrom.cc169 char *cdpath, *delim; local
176 delim = SDL_strchr(SDLcdrom, ':');
177 if ( delim ) {
178 *delim++ = '\0';
183 if ( delim ) {
184 SDLcdrom = delim;
/external/qemu/distrib/sdl-1.2.15/src/cdrom/bsdi/
H A DSDL_syscdrom.c269 char *cdpath, *delim; local
276 delim = SDL_strchr(SDLcdrom, ':');
277 if ( delim ) {
278 *delim++ = '\0';
283 if ( delim ) {
284 SDLcdrom = delim;
/external/qemu/distrib/sdl-1.2.15/src/cdrom/linux/
H A DSDL_syscdrom.c285 char *cdpath, *delim; local
292 delim = SDL_strchr(SDLcdrom, ':');
293 if ( delim ) {
294 *delim++ = '\0';
302 if ( delim ) {
303 SDLcdrom = delim;
/external/smack/src/org/xbill/DNS/
H A DTokenizer.java34 private static String delim = " \t\n;()\""; field in class:Tokenizer
153 delimiters = delim;
289 delimiters = delim;
/external/sqlite/android/
H A Dsqlite3_android.cpp343 const UChar * delim = (const UChar *)sqlite3_value_text16(argv[3]); local
344 if (delim == NULL) {
400 u_strtok_r(origData, delim, &state);
402 } while ((token = u_strtok_r(NULL, delim, &state)) != NULL);
/external/chromium/net/http/
H A Dhttp_util.cc25 static size_t FindStringEnd(const string& line, size_t start, char delim) { argument
26 DCHECK(start < line.length() && line[start] == delim &&
27 (delim == '"' || delim == '\''));
29 const char set[] = { delim, '\\', '\0' };
/external/linux-tools-perf/util/
H A Dtrace-event.h85 char *delim; member in struct:print_arg_flags
/external/openssh/
H A Dssh-keyscan.c152 xstrsep(char **str, const char *delim) argument
160 e = s + strcspn(s, delim);
174 strnnsep(char **stringp, char *delim) argument
179 tok = xstrsep(stringp, delim);
/external/qemu/
H A Dqemu-option.c39 * The option name is delimited by delim (usually , or =) or the string end
46 const char *get_opt_name(char *buf, int buf_size, const char *p, char delim) argument
51 while (*p != '\0' && *p != delim) {
/external/valgrind/main/coregrind/
H A Dm_libcbase.c416 VG_(strtok) (Char *s, const Char *delim) argument
418 return VG_(strtok_r) (s, delim, &olds);
422 VG_(strtok_r) (Char* s, const Char* delim, Char** saveptr) argument
430 s += VG_(strspn (s, delim));
439 s = VG_(strpbrk (token, delim));
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_upnp.c309 char *delim; local
335 delim = os_strchr(host, ':');
336 if (delim) {
337 *delim = '\0'; /* null terminate host name for now */
338 if (isdigit(delim[1]))
339 port = atol(delim + 1);
370 if (delim)
371 *delim = ':'; /* Restore port */
/external/wpa_supplicant_8/src/wps/
H A Dwps_upnp.c309 char *delim; local
335 delim = os_strchr(host, ':');
336 if (delim) {
337 *delim = '\0'; /* null terminate host name for now */
338 if (isdigit(delim[1]))
339 port = atol(delim + 1);
370 if (delim)
371 *delim = ':'; /* Restore port */
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_upnp.c309 char *delim; local
335 delim = os_strchr(host, ':');
336 if (delim) {
337 *delim = '\0'; /* null terminate host name for now */
338 if (isdigit(delim[1]))
339 port = atol(delim + 1);
370 if (delim)
371 *delim = ':'; /* Restore port */
/external/checkpolicy/
H A Dmodule_compiler.c170 char *bounds_id, *delim; local
172 delim = strrchr(role_id, '.');
173 if (!delim)
181 bounds_id[(size_t)(delim - role_id)] = '\0';
374 char *bounds_id, *delim; local
376 delim = strrchr(user_id, '.');
377 if (!delim)
385 bounds_id[(size_t)(delim - user_id)] = '\0';
/external/chromium/net/tools/flip_server/
H A Dbalsa_frame.cc691 bool SplitStringPiece(base::StringPiece original, char delim, argument
697 if (*p == delim) {
701 while (++p != end && *p != delim) {
/external/chromium_org/net/tools/balsa/
H A Dbalsa_frame.cc691 bool SplitStringPiece(base::StringPiece original, char delim, argument
697 if (*p == delim) {
701 while (++p != end && *p != delim) {
/external/chromium_org/third_party/icu/source/common/
H A Dustring.c575 const UChar *delim,
597 nonDelimIdx = u_strspn(tokSource, delim);
601 nextToken = u_strpbrk(tokSource, delim);
574 u_strtok_r(UChar *src, const UChar *delim, UChar **saveState) argument
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc153 const char* delim,
155 // Optimize the common case where delim is a single character.
156 if (delim[0] != '\0' && delim[1] == '\0') {
157 char c = delim[0];
173 begin_index = full.find_first_not_of(delim);
175 end_index = full.find_first_of(delim, begin_index);
181 begin_index = full.find_first_not_of(delim, end_index);
186 const char* delim,
189 SplitStringToIteratorUsing(full, delim, i
152 SplitStringToIteratorUsing(const string& full, const char* delim, ITR& result) argument
185 SplitStringUsing(const string& full, const char* delim, vector<string>* result) argument
205 SplitStringToIteratorAllowEmpty(const StringType& full, const char* delim, int pieces, ITR& result) argument
224 SplitStringAllowEmpty(const string& full, const char* delim, vector<string>* result) argument
237 JoinStringsIterator(const ITERATOR& start, const ITERATOR& end, const char* delim, string* result) argument
264 JoinStrings(const vector<string>& components, const char* delim, string * result) argument
[all...]
/external/icu4c/common/
H A Dustring.cpp576 const UChar *delim,
598 nonDelimIdx = u_strspn(tokSource, delim);
602 nextToken = u_strpbrk(tokSource, delim);
575 u_strtok_r(UChar *src, const UChar *delim, UChar **saveState) argument
/external/libvpx/libvpx/vpx/src/
H A Dsvc_encodeframe.c29 _CRTIMP char *__cdecl strtok_s(char *str, const char *delim, char **context);
271 const char *delim = ","; local
284 token = strtok_r(input_string, delim, &save_ptr);
294 token = strtok_r(NULL, delim, &save_ptr);
320 const char *delim = ","; local
333 token = strtok_r(input_string, delim, &save_ptr);
354 token = strtok_r(NULL, delim, &save_ptr);
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc153 const char* delim,
155 // Optimize the common case where delim is a single character.
156 if (delim[0] != '\0' && delim[1] == '\0') {
157 char c = delim[0];
173 begin_index = full.find_first_not_of(delim);
175 end_index = full.find_first_of(delim, begin_index);
181 begin_index = full.find_first_not_of(delim, end_index);
186 const char* delim,
189 SplitStringToIteratorUsing(full, delim, i
152 SplitStringToIteratorUsing(const string& full, const char* delim, ITR& result) argument
185 SplitStringUsing(const string& full, const char* delim, vector<string>* result) argument
199 JoinStringsIterator(const ITERATOR& start, const ITERATOR& end, const char* delim, string* result) argument
226 JoinStrings(const vector<string>& components, const char* delim, string * result) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/joystick/linux/
H A DSDL_sysjoystick.c422 char *envcopy, *envpath, *delim; local
426 delim = SDL_strchr(envpath, ':');
427 if ( delim != NULL ) {
428 *delim++ = '\0';
442 envpath = delim;
/external/wpa_supplicant_8/hostapd/src/common/
H A Dwpa_common.c1310 int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim) argument
1317 pos == start ? "" : delim);
1324 pos == start ? "" : delim);
1331 pos == start ? "" : delim);
1338 pos == start ? "" : delim);
1345 pos == start ? "" : delim);
1352 pos == start ? "" : delim);
/external/wpa_supplicant_8/src/common/
H A Dwpa_common.c1310 int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim) argument
1317 pos == start ? "" : delim);
1324 pos == start ? "" : delim);
1331 pos == start ? "" : delim);
1338 pos == start ? "" : delim);
1345 pos == start ? "" : delim);
1352 pos == start ? "" : delim);

Completed in 945 milliseconds

12345