Home
last modified time | relevance | path

Searched refs:eol (Results 1 – 5 of 5) sorted by relevance

/system/core/libutils/
DTokenizer.cpp114 const char* eol = mCurrent; in peekRemainderOfLine() local
115 while (eol != end) { in peekRemainderOfLine()
116 char ch = *eol; in peekRemainderOfLine()
120 eol += 1; in peekRemainderOfLine()
122 return String8(mCurrent, eol - mCurrent); in peekRemainderOfLine()
/system/core/storaged/
Dstoraged_info.cpp146 << version << eol << lifetime_a << lifetime_b in publish()
267 if (sscanf(buffer.c_str(), "%hx", &eol) < 1 || eol == 0) { in report_sysfs()
313 eol = val; in report()
321 if (eol == 0 || (lifetime_a == 0 && lifetime_b == 0)) { in report()
349 eol = halInfo.eol; in set_values_from_hal_storage_info()
DEventLogTags.logtags39 2733 storaged_emmc_info (mmc_ver|3),(eol|1),(lifetime_a|1),(lifetime_b|1)
/system/core/storaged/include/
Dstoraged_info.h43 uint16_t eol; // pre-eol (end of life) information variable
61 storage_info_t() : eol(0), lifetime_a(0), lifetime_b(0), in storage_info_t()
/system/core/init/
Dproperty_service.cpp632 char *key, *value, *eol, *sol, *tmp, *fn; in LoadProperties() local
656 while ((eol = strchr(sol, '\n'))) { in LoadProperties()
658 *eol++ = 0; in LoadProperties()
659 sol = eol; in LoadProperties()
664 tmp = eol - 2; in LoadProperties()