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

1 2 3 4 5 6 7 8 9

  /system/extras/tests/bionic/libc/glibc/assert/
test-assert.c 76 if (!strstr (buf, "1 == 2"))
80 if (strstr (buf, "1 == 1"))
84 if (strstr (buf, "2 == 3"))
  /bionic/libc/string/
strstr.c 1 /* $OpenBSD: strstr.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */
40 strstr(const char *s, const char *find) function
  /bootable/bootloader/legacy/libc/
strstr.c 31 char *strstr(const char *s1, const char *s2) function
Android.mk 19 strstr.c \
  /bootable/recovery/tools/ota/
check-lost+found.c 130 if (strstr(line, "yaffs: dev is")) in_yaffs = 1;
133 strstr(line, "yaffs") ||
134 strstr(line, "mtd") ||
135 strstr(line, "msm_nand")) {
139 if (strstr(line, "yaffs_read_super: isCheckpointed")) in_yaffs = 0;
add-property-tag.c 32 const char *prop = strstr(line, propname);
46 char *pos = strstr(line, tag);
  /external/gtest/test/
gtest_throw_on_failure_ex_test.cc 67 if (strstr(e.what(), "Expected failure") != NULL)
  /external/oprofile/libutil/
op_string.c 33 return strstr(str, prefix) == str;
  /bionic/libstdc++/include/
cstring 61 using ::strstr;
  /frameworks/base/libs/surfaceflinger/DisplayHardware/
DisplayHardware.cpp 196 if (strstr(egl_extensions, "EGL_ANDROID_swap_rectangle")) {
260 if (strstr(gl_renderer, "<some vendor string>")) {
266 if (strstr(gl_extensions, "GL_ARB_texture_non_power_of_two")) {
269 if (strstr(gl_extensions, "GL_OES_draw_texture")) {
273 if (strstr( gl_extensions, "GL_OES_EGL_image") &&
274 (strstr(egl_extensions, "EGL_KHR_image_base") ||
275 strstr(egl_extensions, "EGL_KHR_image")) &&
276 strstr(egl_extensions, "EGL_ANDROID_image_native_buffer")) {
  /ndk/build/platforms/android-5/arch-x86/usr/include/
cstring 61 using ::strstr;
  /ndk/build/platforms/android-8/arch-x86/usr/include/
cstring 61 using ::strstr;
  /external/netperf/
netsh.c 365 if (strstr(temp,"6")) {
369 if (strstr(temp,"inet") ||
370 strstr(temp,"4")) {
373 if (strstr(temp,"unspec") ||
374 strstr(temp,"0")) {
960 /* we use a series of strstr's here because not everyone has
962 if ((strstr(test_name,"RR")) ||
963 (strstr(test_name,"rr")) ||
964 (strstr(test_name,"Rr")) ||
965 (strstr(test_name,"rR")))
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_rel.c 76 pEnd = (uint8_t *)strstr((char *)pHead, "-");
86 pEnd = (uint8_t *)strstr((char *)pHead, "-");
96 pEnd = (uint8_t *)strstr((char *)pHead, "T");
106 pEnd = (uint8_t *)strstr((char *)pHead, ":");
116 pEnd = (uint8_t *)strstr((char *)pHead, ":");
140 char* constrain_begin = strstr((char*)drm_constrain,begin_constrain);
141 char* constrain_end = strstr((char*)drm_constrain,end_constrain);
182 char*start = strstr((char*)drm_constrain,all_vaild_constraints[i][0]);
185 char* end = strstr((char*)drm_constrain,all_vaild_constraints[i][1]);
345 pEnd = (uint8_t *)strstr((char *)pHead, "Y")
    [all...]
  /external/oprofile/daemon/
opd_pipe.c 80 if (strstr(line, "do_jitconv") != NULL) {
  /system/extras/tests/bionic/libstdc++/
test_cstring.cpp 61 using std::strstr;
  /external/e2fsprogs/intl/
plural-exp.c 107 plural = strstr (nullentry, "plural=");
108 nplurals = strstr (nullentry, "nplurals=");
  /frameworks/base/core/jni/
android_os_Debug.cpp 124 if (strstr(line, "[heap]")) {
126 } else if (strstr(line, "/dalvik-LinearAlloc")) {
128 } else if (strstr(line, "/mspace/dalvik-heap")) {
130 } else if (strstr(line, "/dalvik-heap-bitmap/")) {
132 } else if (strstr(line, "/data/dalvik-cache/")) {
134 } else if (strstr(line, "/tmp/sqlite-heap")) {
  /external/bluetooth/bluez/audio/
gateway.c 184 got_ok = NULL != strstr(resp_buf, OK_RESPONSE);
185 got_error = NULL != strstr(resp_buf, ERROR_RESPONSE);
203 next = strstr(current, ",(");
208 current = strstr(next + 1, ",(");
237 if (strstr(features, "0"))
240 if (strstr(features, "1"))
243 if (strstr(features, "1x"))
246 if (strstr(features, "2"))
249 if (strstr(features, "2x"))
252 if (strstr(features, "3")
    [all...]
  /external/wpa_supplicant/wpa_gui/
networkconfig.ui.h 325 if (strstr(reply, "RSN") || strstr(reply, "WPA2"))
327 else if (strstr(reply, "WPA"))
336 if (strstr(reply, "WPA-EAP"))
338 else if (strstr(reply, "WPA-PSK"))
340 else if (strstr(reply, "IEEE8021X")) {
350 if (strstr(reply, "CCMP"))
352 else if (strstr(reply, "TKIP"))
354 else if (strstr(reply, "WEP"))
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
networkconfig.ui.h 339 if (strstr(reply, "RSN") || strstr(reply, "WPA2"))
341 else if (strstr(reply, "WPA"))
350 if (strstr(reply, "WPA-EAP"))
352 else if (strstr(reply, "WPA-PSK"))
354 else if (strstr(reply, "IEEE8021X")) {
364 if (strstr(reply, "CCMP") && auth != AUTH_NONE)
366 else if (strstr(reply, "TKIP"))
368 else if (strstr(reply, "WEP"))
  /external/qemu/
qemu-sockets-android.c 90 h = strstr(opts, ",to=");
92 if (strstr(opts, ",ipv4")) {
96 if (strstr(opts, ",ipv6")) {
214 if (strstr(str, ",ipv4")) {
218 if (strstr(str, ",ipv6")) {
  /external/quake/quake/src/QW/qwfwd/
misc.c 297 if (strstr (key, "\\"))
387 if (strstr (key, "\\") || strstr (value, "\\") )
392 if (strstr (key, "\"") || strstr (value, "\"") )
  /external/bluetooth/bluez/test/
attest.c 65 if (strstr(buf, "\r\nOK") != NULL)
67 if (strstr(buf, "\r\nERROR") != NULL)
69 if (strstr(buf, "\r\nCONNECT") != NULL)
  /sdk/sdklauncher/
sdklauncher.c 157 char* s1 = strstr(buffer, "WARNING");
158 char* s2 = strstr(buffer, "ERROR");
166 s2 = strstr(s1, "[INFO]");

Completed in 1002 milliseconds

1 2 3 4 5 6 7 8 9