Home
last modified time | relevance | path

Searched refs:ep (Results 1 – 9 of 9) sorted by relevance

/system/tools/aidl/tests/java_app/src/android/aidl/tests/
DExtensionTests.java135 ExtendableParcelable ep = new ExtendableParcelable(); in testReadWriteExtension() local
136 ep.a = 1; in testReadWriteExtension()
137 ep.b = "a"; in testReadWriteExtension()
138 ep.c = 42L; in testReadWriteExtension()
140 ep.ext.setParcelable(ext); in testReadWriteExtension()
142 ep.ext2.setParcelable(ext2); in testReadWriteExtension()
143 MyExtLike extLike = ep.ext.<MyExtLike>getParcelable(MyExtLike.class); in testReadWriteExtension()
147 MyExt actualExt = ep.ext.getParcelable(MyExt.class); in testReadWriteExtension()
148 MyExt2 actualExt2 = ep.ext2.getParcelable(MyExt2.class); in testReadWriteExtension()
150 checkContent(ep, ext, ext2); in testReadWriteExtension()
[all …]
/system/core/libutils/
DProcessCallStack.cpp154 dirent* ep; in update() local
155 while ((ep = readdir(dp.get())) != nullptr) { in update()
157 sscanf(ep->d_name, "%d", &tid); in update()
162 __FUNCTION__, PATH_SELF_TASK, ep->d_name); in update()
/system/core/liblog/
Devent_tag_map.cpp251 char* ep; in scanTagLine() local
252 unsigned long val = strtoul(pData, &ep, 10); in scanTagLine()
253 const char* cp = ep; in scanTagLine()
521 char* ep; in __getEventTag() local
522 unsigned long val = strtoul(buf, &ep, 10); // return size in __getEventTag()
523 const char* cp = ep; in __getEventTag()
579 const char* ep = endOfTag(tagname); in android_lookupEventTagNum() local
580 size_t len = ep - tagname; in android_lookupEventTagNum()
581 if (!len || *ep) { in android_lookupEventTagNum()
/system/core/logcat/
Dlogcat.cpp441 char* ep = t.strptime(cp, "%m-%d %H:%M:%S.%q"); in parseTime() local
442 if (ep) return ep; in parseTime()
443 ep = t.strptime(cp, "%Y-%m-%d %H:%M:%S.%q"); in parseTime()
444 if (ep) return ep; in parseTime()
489 char* ep = parseTime(t, line.c_str()); in lastLogTime() local
490 if (!ep || (*ep != ' ')) continue; in lastLogTime()
/system/core/logd/
DLogKlog.cpp244 char* ep = buffer + len; in onDataAvailable() local
245 *ep = '\0'; in onDataAvailable()
250 if (((tok + sublen) >= ep) && (retval != 0) && full) { in onDataAvailable()
270 const char* ep = real.strptime(real_string, real_format); in calculateCorrection() local
271 if (!ep || (ep > &real_string[len]) || (real > log_time(CLOCK_REALTIME))) { in calculateCorrection()
/system/core/logcat/tests/
Dlogcat_test.cpp227 char* ep = cp; in fgetLongTime() local
228 while (isdigit(*ep)) { in fgetLongTime()
229 ++ep; in fgetLongTime()
231 if ((*ep != '-') && (*ep != '.')) { in fgetLongTime()
235 while (((ep = strchr(ep, ':'))) && (*++ep != ' ')) { in fgetLongTime()
236 if (isdigit(ep[0]) && isdigit(ep[1]) && isdigit(ep[2])) break; in fgetLongTime()
238 if (!ep) { in fgetLongTime()
242 ep -= pid_field_width; in fgetLongTime()
243 *ep = '\0'; in fgetLongTime()
/system/core/fastboot/
Dusb_linux.cpp418 bulk.ep = handle_->ep_out; in Write()
452 bulk.ep = handle_->ep_in; in Read()
/system/update_engine/sample_images/
Dgenerate_images.sh57 sudo setcap cap_net_raw=ep "${mntdir}"/regular-with_net_cap
/system/core/libusbhost/
Dusbhost.c680 ctrl.ep = endpoint; in usb_device_bulk_transfer()