Home
last modified time | relevance | path

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

/system/tools/aidl/tests/java/src/android/aidl/tests/
DExtensionTests.java93 ExtendableParcelable ep = new ExtendableParcelable(); in testRepeatExtendableParcelable() local
94 ep.a = 1; in testRepeatExtendableParcelable()
95 ep.b = "a"; in testRepeatExtendableParcelable()
96 ep.c = 42L; in testRepeatExtendableParcelable()
98 ep.ext.setParcelable(ext); in testRepeatExtendableParcelable()
101 mCppJavaTests.RepeatExtendableParcelable(ep, ep2); in testRepeatExtendableParcelable()
102 assertThat(ep2.a, is(ep.a)); in testRepeatExtendableParcelable()
103 assertThat(ep2.b, is(ep.b)); in testRepeatExtendableParcelable()
179 ExtendableParcelable ep = new ExtendableParcelable(); in testReadWriteExtension() local
180 ep.a = 1; in testReadWriteExtension()
[all …]
/system/tools/aidl/tests/
Daidl_test_client_parcelables.cpp334 ExtendableParcelable ep; in TEST_F() local
335 ep.writeToParcel(&parcel); in TEST_F()
337 ep.ext.getParcelable(&emptyExt); in TEST_F()
342 ExtendableParcelable ep; in TEST_F() local
343 ep.readFromParcel(&parcel); in TEST_F()
345 ep.ext.getParcelable(&emptyExt); in TEST_F()
403 ExtendableParcelable ep; in TEST_F() local
404 ep.a = 1; in TEST_F()
405 ep.b = "a"; in TEST_F()
406 ep.c = 42L; in TEST_F()
[all …]
Daidl_test_service.cpp270 const ::android::aidl::tests::extension::ExtendableParcelable& ep, in RepeatExtendableParcelable()
272 ep2->a = ep.a; in RepeatExtendableParcelable()
273 ep2->b = ep.b; in RepeatExtendableParcelable()
275 ep.ext.getParcelable(&myExt); in RepeatExtendableParcelable()
/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/logging/logcat/
Dlogcat.cpp445 char* ep = t.strptime(cp, "%m-%d %H:%M:%S.%q"); in parseTime() local
446 if (ep) return ep; in parseTime()
447 ep = t.strptime(cp, "%Y-%m-%d %H:%M:%S.%q"); in parseTime()
448 if (ep) return ep; in parseTime()
493 char* ep = parseTime(t, line.c_str()); in lastLogTime() local
494 if (!ep || (*ep != ' ')) continue; in lastLogTime()
/system/logging/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/logging/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/tools/aidl/tests/android/aidl/tests/
DICppJavaTests.aidl50 void RepeatExtendableParcelable(in ExtendableParcelable ep, out ExtendableParcelable ep2); in RepeatExtendableParcelable() argument
/system/logging/liblog/
Devent_tag_map.cpp143 char* ep; in scanTagLine() local
144 unsigned long val = strtoul(pData, &ep, 10); in scanTagLine()
145 const char* cp = ep; in scanTagLine()
/system/tools/aidl/tests/java/src/android/aidl/service/
DTestServiceServer.java528 public void RepeatExtendableParcelable(ExtendableParcelable ep, ExtendableParcelable ep2) in RepeatExtendableParcelable() argument
530 ep2.a = ep.a; in RepeatExtendableParcelable()
531 ep2.b = ep.b; in RepeatExtendableParcelable()
533 ep2.ext.setParcelable(ep.ext.getParcelable(MyExt.class)); in RepeatExtendableParcelable()
534 ep2.c = ep.c; in RepeatExtendableParcelable()
/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()