Searched refs:stuff (Results 1 – 5 of 5) sorted by relevance
73 auto stuff = IHidlStuff::getService(id2name(id)); in callHidl() local74 CHECK(stuff->call(idx).isOk()); in callHidl()78 sp<IAidlStuff> stuff; in callAidl() local79 CHECK_EQ(OK, android::getService<IAidlStuff>(String16(id2name(id).c_str()), &stuff)); in callAidl()80 auto ret = stuff->call(idx); in callAidl()181 auto stuff = IHidlStuff::getService(id2name(kP1Id)); in TEST() local182 ASSERT_NE(nullptr, stuff); in TEST()183 ASSERT_TRUE(stuff->call(0).isOk()); in TEST()186 sp<IAidlStuff> stuff; in TEST() local187 ASSERT_EQ(OK, android::getService<IAidlStuff>(String16(id2name(kP1Id).c_str()), &stuff)); in TEST()[all …]
457 private static <T> void assertItemsOfType(List<T> stuff, Class<? extends T>... classes) { in assertItemsOfType() argument458 assertThat(stuff).hasSize(classes.length); in assertItemsOfType()459 for (int i = 0; i < stuff.size(); i++) { in assertItemsOfType()460 assertThat(stuff.get(i)).isInstanceOf(classes[i]); in assertItemsOfType()464 private static <T> void assertNoItemsOfType(List<T> stuff, Class<? extends T> klass) { in assertNoItemsOfType() argument465 for (int i = 0; i < stuff.size(); i++) { in assertNoItemsOfType()466 assertThat(stuff.get(i)).isNotInstanceOf(klass); in assertNoItemsOfType()470 private static <T> void assertOneItemOfType(List<T> stuff, Class<? extends T> klass) { in assertOneItemOfType() argument471 List<?> classes = stuff.stream().map((item) -> item.getClass()).toList(); in assertOneItemOfType()
7 In dir/foo.cc or dir/foo_test.cc, whose main purpose is to implement or test the stuff in
88 # Although marked "view" this is mostly graphics stuff
500 byte[] stuff = new byte[1024*1024]; in onRun()