Searched refs:pstr (Results 1 - 4 of 4) sorted by relevance

/hardware/qcom/display/msm8084/libhwcomposer/
H A Dhwc_uevents.cpp75 char* pstr = strstr(iter_str, "PANEL_ALIVE=0"); local
76 if (pstr != NULL) {
93 char* pstr = strstr(iter_str, "SWITCH_STATE="); local
94 if (pstr != NULL) {
95 return (atoi(pstr + strlen("SWITCH_STATE=")));
/hardware/qcom/display/msm8226/libhwcomposer/
H A Dhwc_uevents.cpp82 char* pstr = strstr(iter_str, "PANEL_ALIVE=0"); local
83 if (pstr != NULL) {
100 char* pstr = strstr(iter_str, "SWITCH_STATE="); local
101 if (pstr != NULL) {
102 return (atoi(pstr + strlen("SWITCH_STATE=")));
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc6144 // If *pstr starts with the given prefix, modifies *pstr to be right
6145 // past the prefix and returns true; otherwise leaves *pstr unchanged
6146 // and returns false. None of pstr, *pstr, and prefix can be NULL.
6147 bool SkipPrefix(const char* prefix, const char** pstr) { argument
6149 if (strncmp(*pstr, prefix, prefix_len) == 0) {
6150 *pstr += prefix_len;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h7461 // If *pstr starts with the given prefix, modifies *pstr to be right
7462 // past the prefix and returns true; otherwise leaves *pstr unchanged
7463 // and returns false. None of pstr, *pstr, and prefix can be NULL.
7464 GTEST_API_ bool SkipPrefix(const char* prefix, const char** pstr);

Completed in 128 milliseconds