Home
last modified time | relevance | path

Searched full:perform (Results 1 – 25 of 16457) sorted by relevance

12345678910>>...659

/aosp_15_r20/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/deletion/
DDeletionFragmentTest.kt108 .perform(scrollTo()) in deleteAllData_timeRangeDialog_showsCorrectText()
112 .perform(scrollTo()) in deleteAllData_timeRangeDialog_showsCorrectText()
116 .perform(scrollTo()) in deleteAllData_timeRangeDialog_showsCorrectText()
120 .perform(scrollTo()) in deleteAllData_timeRangeDialog_showsCorrectText()
157 .perform(scrollTo()) in deleteCategoryData_timeRangeDialog_showsCorrectText()
161 .perform(scrollTo()) in deleteCategoryData_timeRangeDialog_showsCorrectText()
165 .perform(scrollTo()) in deleteCategoryData_timeRangeDialog_showsCorrectText()
169 .perform(scrollTo()) in deleteCategoryData_timeRangeDialog_showsCorrectText()
208 .perform(scrollTo()) in deletePermissionTypeData_timeRangeDialog_showsCorrectText()
212 .perform(scrollTo()) in deletePermissionTypeData_timeRangeDialog_showsCorrectText()
[all …]
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/widget/
H A DTextViewActivityMouseTest.java84 onView(withId(R.id.textview)).perform(mouseClick()); in testSelectTextByDrag()
85 onView(withId(R.id.textview)).perform(replaceText(helloWorld)); in testSelectTextByDrag()
87 onView(withId(R.id.textview)).perform( in testSelectTextByDrag()
91 onView(withId(R.id.textview)).perform(mouseClickOnTextAtIndex(helloWorld.indexOf("w"))); in testSelectTextByDrag()
98 onView(withId(R.id.textview)).perform(mouseClick()); in testSelectTextByDrag_reverse()
99 onView(withId(R.id.textview)).perform(replaceText(helloWorld)); in testSelectTextByDrag_reverse()
100 onView(withId(R.id.textview)).perform( in testSelectTextByDrag_reverse()
109 onView(withId(R.id.textview)).perform(mouseClick()); in testContextMenu()
110 onView(withId(R.id.textview)).perform(replaceText(text)); in testContextMenu()
114 onView(withId(R.id.textview)).perform( in testContextMenu()
[all …]
H A DTextViewActivityTest.java152 onView(withId(R.id.textview)).perform(clickOnTextAtIndex(helloWorld.indexOf("world"))); in testPositionCursorAtTextAtIndex()
155 onView(withId(R.id.textview)).perform(pressKey(KeyEvent.KEYCODE_FORWARD_DEL)); in testPositionCursorAtTextAtIndex()
166 onView(withId(R.id.textview)).perform(clickOnTextAtIndex(0)); in testPositionCursorAtTextAtIndex_arabic()
168 onView(withId(R.id.textview)).perform(clickOnTextAtIndex(1)); in testPositionCursorAtTextAtIndex_arabic()
170 onView(withId(R.id.textview)).perform(clickOnTextAtIndex(2)); in testPositionCursorAtTextAtIndex_arabic()
172 onView(withId(R.id.textview)).perform(clickOnTextAtIndex(3)); in testPositionCursorAtTextAtIndex_arabic()
174 onView(withId(R.id.textview)).perform(clickOnTextAtIndex(4)); in testPositionCursorAtTextAtIndex_arabic()
176 onView(withId(R.id.textview)).perform(clickOnTextAtIndex(5)); in testPositionCursorAtTextAtIndex_arabic()
186 onView(withId(R.id.textview)).perform(clickOnTextAtIndex(0)); in testPositionCursorAtTextAtIndex_devanagari()
188 onView(withId(R.id.textview)).perform(clickOnTextAtIndex(1)); in testPositionCursorAtTextAtIndex_devanagari()
[all …]
/aosp_15_r20/external/cronet/third_party/boringssl/src/third_party/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc195 EXPECT_EQ(1, a.Perform(std::make_tuple())); in TEST()
201 EXPECT_FALSE(a.Perform(std::make_tuple(1))); in TEST()
202 EXPECT_TRUE(a.Perform(std::make_tuple(-1))); in TEST()
209 EXPECT_EQ(p + 2, a.Perform(std::make_tuple(p, Short(2)))); in TEST()
215 EXPECT_EQ(6, a.Perform(std::make_tuple(1, '\2', Short(3)))); in TEST()
221 EXPECT_EQ(1234, a.Perform(std::make_tuple(1000, 200, 30, 4))); in TEST()
227 EXPECT_EQ(12345, a.Perform(std::make_tuple(10000, 2000, 300, 40, 5))); in TEST()
234 a.Perform(std::make_tuple(100000, 20000, 3000, 400, 50, 6))); in TEST()
247 a.Perform(std::make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
258 a.Perform(std::make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
[all …]
H A Dgmock-actions_test.cc513 // Perform method.
519 int Perform(const std::tuple<bool, int>& args) override { in Perform() function in testing::__anonaacdd73f0111::MyActionImpl
532 // When exercising the Perform() method of Action<F>, we must pass in TEST()
534 // types. For example, if F is int(), then Perform() takes a in TEST()
535 // 0-tuple; if F is void(bool, int), then Perform() takes a in TEST()
537 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST()
550 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST()
551 EXPECT_EQ(0, action.Perform(std::make_tuple(false, 1))); in TEST()
560 EXPECT_EQ(5, a1.Perform(std::make_tuple(true, 5))); in TEST()
561 EXPECT_EQ(0, a1.Perform(std::make_tuple(false, 1))); in TEST()
[all …]
/aosp_15_r20/external/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc205 EXPECT_EQ(1, a.Perform(std::make_tuple())); in TEST()
211 EXPECT_FALSE(a.Perform(std::make_tuple(1))); in TEST()
212 EXPECT_TRUE(a.Perform(std::make_tuple(-1))); in TEST()
219 EXPECT_EQ(p + 2, a.Perform(std::make_tuple(p, Short(2)))); in TEST()
225 EXPECT_EQ(6, a.Perform(std::make_tuple(1, '\2', Short(3)))); in TEST()
231 EXPECT_EQ(1234, a.Perform(std::make_tuple(1000, 200, 30, 4))); in TEST()
237 EXPECT_EQ(12345, a.Perform(std::make_tuple(10000, 2000, 300, 40, 5))); in TEST()
244 a.Perform(std::make_tuple(100000, 20000, 3000, 400, 50, 6))); in TEST()
257 a.Perform(std::make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
268 a.Perform(std::make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
[all …]
H A Dgmock-actions_test.cc513 // Perform method.
519 int Perform(const std::tuple<bool, int>& args) override { in Perform() function in testing::__anon9bb251da0111::MyActionImpl
532 // When exercising the Perform() method of Action<F>, we must pass in TEST()
534 // types. For example, if F is int(), then Perform() takes a in TEST()
535 // 0-tuple; if F is void(bool, int), then Perform() takes a in TEST()
537 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST()
550 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST()
551 EXPECT_EQ(0, action.Perform(std::make_tuple(false, 1))); in TEST()
560 EXPECT_EQ(5, a1.Perform(std::make_tuple(true, 5))); in TEST()
561 EXPECT_EQ(0, a1.Perform(std::make_tuple(false, 1))); in TEST()
[all …]
/aosp_15_r20/external/cronet/third_party/googletest/src/googlemock/test/
H A Dgmock-more-actions_test.cc205 EXPECT_EQ(1, a.Perform(std::make_tuple())); in TEST()
211 EXPECT_FALSE(a.Perform(std::make_tuple(1))); in TEST()
212 EXPECT_TRUE(a.Perform(std::make_tuple(-1))); in TEST()
219 EXPECT_EQ(p + 2, a.Perform(std::make_tuple(p, Short(2)))); in TEST()
225 EXPECT_EQ(6, a.Perform(std::make_tuple(1, '\2', Short(3)))); in TEST()
231 EXPECT_EQ(1234, a.Perform(std::make_tuple(1000, 200, 30, 4))); in TEST()
237 EXPECT_EQ(12345, a.Perform(std::make_tuple(10000, 2000, 300, 40, 5))); in TEST()
244 a.Perform(std::make_tuple(100000, 20000, 3000, 400, 50, 6))); in TEST()
257 a.Perform(std::make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
268 a.Perform(std::make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"), in TEST()
[all …]
H A Dgmock-actions_test.cc513 // Perform method.
519 int Perform(const std::tuple<bool, int>& args) override { in Perform() function in testing::__anon658bada40111::MyActionImpl
532 // When exercising the Perform() method of Action<F>, we must pass in TEST()
534 // types. For example, if F is int(), then Perform() takes a in TEST()
535 // 0-tuple; if F is void(bool, int), then Perform() takes a in TEST()
537 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST()
550 EXPECT_EQ(5, action.Perform(std::make_tuple(true, 5))); in TEST()
551 EXPECT_EQ(0, action.Perform(std::make_tuple(false, 1))); in TEST()
560 EXPECT_EQ(5, a1.Perform(std::make_tuple(true, 5))); in TEST()
561 EXPECT_EQ(0, a1.Perform(std::make_tuple(false, 1))); in TEST()
[all …]
/aosp_15_r20/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/permissions/request/
DPermissionsActivityTest.kt183 .perform(scrollToLastPosition<RecyclerView.ViewHolder>()) in <lambda>()
214 .perform(scrollToLastPosition<RecyclerView.ViewHolder>()) in <lambda>()
248 .perform(scrollToLastPosition<RecyclerView.ViewHolder>()) in <lambda>()
363 onView(withText("Allow")).perform(click()) in <lambda>()
397 onView(withText("Don't allow")).perform(click()) in <lambda>()
429 .perform(scrollToLastPosition<RecyclerView.ViewHolder>()) in <lambda>()
430 onView(withText("Conditions")).perform(click()) in <lambda>()
431 onView(withText("Allow")).perform(click()) in <lambda>()
467 .perform(scrollToLastPosition<RecyclerView.ViewHolder>()) in <lambda>()
468 onView(withText("Conditions")).perform(click()) in <lambda>()
[all …]
/aosp_15_r20/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/exportimport/
DImportSourceLocationFragmentTest.kt167 onView(withId(R.id.export_import_cancel_button)).perform(click()) in importSourceLocationFragment_cancelButton_isClickable()
285 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_1_TITLE)).perform(click()) in importSourceLocationFragment_documentProviderClicked_documentProviderIsChecked()
319 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_1_TITLE)).perform(click()) in importSourceLocationFragment_secondDocumentProviderClicked_otherDocumentProviderIsNotChecked()
320 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_2_TITLE)).perform(click()) in importSourceLocationFragment_secondDocumentProviderClicked_otherDocumentProviderIsNotChecked()
362 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_1_TITLE)).perform(click()) in importSourceLocationFragment_documentProviderClicked_nextButtonIsEnabled()
389 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_1_TITLE)).perform(click()) in importSourceLocationFragment_nextButtonClicked_startsDocumentsUi()
390 onView(withId(R.id.export_import_next_button)).perform(click()) in importSourceLocationFragment_nextButtonClicked_startsDocumentsUi()
430 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_1_TITLE)).perform(click()) in importSourceLocationFragment_chooseFile_navigatesToImportConfirmationDialogFragment()
431 onView(withId(R.id.export_import_next_button)).perform(click()) in importSourceLocationFragment_chooseFile_navigatesToImportConfirmationDialogFragment()
462 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_1_TITLE)).perform(click()) in importSourceLocationFragment_chooseExternalStorageFile_doesNotNavigateToNewScreen()
[all …]
DExportDestinationFragmentTest.kt186 onView(withId(R.id.export_import_cancel_button)).perform(click()) in exportDestinationFragment_clicksBackButton_navigatesBackToFrequencyFragment()
306 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_1_TITLE)).perform(click()) in exportDestinationFragment_documentProviderClicked_documentProviderIsChecked()
340 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_1_TITLE)).perform(click()) in exportDestinationFragment_secondDocumentProviderClicked_otherDocumentProviderIsNotChecked()
341 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_2_TITLE)).perform(click()) in exportDestinationFragment_secondDocumentProviderClicked_otherDocumentProviderIsNotChecked()
391 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_1_TITLE)).perform(click()) in exportDestinationFragment_switchBackToPreviousSelectedDocumentProvider_previousSelectedAccountIsChecked()
394 .perform(click()) in exportDestinationFragment_switchBackToPreviousSelectedDocumentProvider_previousSelectedAccountIsChecked()
395 onView(withText("Done")).inRoot(isDialog()).perform(click()) in exportDestinationFragment_switchBackToPreviousSelectedDocumentProvider_previousSelectedAccountIsChecked()
405 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_2_TITLE)).perform(click()) in exportDestinationFragment_switchBackToPreviousSelectedDocumentProvider_previousSelectedAccountIsChecked()
415 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_1_TITLE)).perform(click()) in exportDestinationFragment_switchBackToPreviousSelectedDocumentProvider_previousSelectedAccountIsChecked()
444 onView(documentProviderWithTitle(TEST_DOCUMENT_PROVIDER_1_TITLE)).perform(click()) in exportDestinationFragment_documentProviderClicked_nextButtonIsEnabled()
[all …]
/aosp_15_r20/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/permissions/connectedapps/
DCombinedPermissionsFragmentTest.kt191 onView(withText("Fitness and wellness")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
193 .perform(scrollTo()) in <lambda>()
195 onView(withText("Health records")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
197 .perform(scrollTo()) in <lambda>()
201 onView(withText("Manage app")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
202 onView(withText("See app data")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
204 .perform(scrollTo()) in <lambda>()
207 .perform(scrollTo()) in <lambda>()
231 .perform(scrollTo()) in <lambda>()
233 onView(withText("Read privacy policy")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
[all …]
/aosp_15_r20/external/ComputeLibrary/arm_compute/runtime/
H A DOperatorList.h77 * Function to perform batch normalization.
97 * Function to perform bitwise AND between 2 tensors.
107 * Function to perform bitwise NOT.
117 * Function to perform bitwise OR between 2 tensors.
127 * Function to perform bitwise XOR between 2 tensors.
242 * Function to perform cropping and resizing.
292 * Function to perform depthwise separable convolution.
342 * Function to perform in Cpu:
349 * Function to perform in CL:
377 * Function to perform:
[all …]
/aosp_15_r20/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/data/appdata/
DAppDataFragmentTest.kt146 onView(withText("Cycle tracking")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
147 onView(withText("Menstruation")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
148 onView(withText("Sexual activity")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
181 onView(withText("Health records")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
182 onView(withText("Vaccines")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
204 onView(withText("Health records")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
205 onView(withText("Vaccines")).perform(scrollTo()).check(matches(isDisplayed())) in <lambda>()
285 onView(withText("Distance")).perform(click()) in <lambda>()
289 onView(withText("Distance")).perform(click()) in <lambda>()
316 onView(withText("Vaccines")).perform(click()) in <lambda>()
[all …]
/aosp_15_r20/prebuilts/vndk/v31/x86_64/include/frameworks/native/libs/nativewindow/include/system/
Dwindow.h151 * perform() instead, which supports nanosecond precision.
158 * perform() instead, which supports nanosecond precision.
198 /* Valid operations for the (*perform)() hook.
455 * hook used to perform various operations on the surface.
456 * (*perform)() is a generic mechanism to add functionality to
462 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
468 int (*perform)(struct ANativeWindow* window, member
581 return window->perform(window, NATIVE_WINDOW_SET_USAGE64, usage); in native_window_set_usage()
620 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop()
631 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count()
[all …]
/aosp_15_r20/prebuilts/vndk/v32/x86_64/include/frameworks/native/libs/nativewindow/include/system/
Dwindow.h151 * perform() instead, which supports nanosecond precision.
158 * perform() instead, which supports nanosecond precision.
198 /* Valid operations for the (*perform)() hook.
455 * hook used to perform various operations on the surface.
456 * (*perform)() is a generic mechanism to add functionality to
462 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
468 int (*perform)(struct ANativeWindow* window, member
581 return window->perform(window, NATIVE_WINDOW_SET_USAGE64, usage); in native_window_set_usage()
620 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop()
631 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count()
[all …]
/aosp_15_r20/prebuilts/vndk/v32/arm64/include/frameworks/native/libs/nativewindow/include/system/
Dwindow.h151 * perform() instead, which supports nanosecond precision.
158 * perform() instead, which supports nanosecond precision.
198 /* Valid operations for the (*perform)() hook.
455 * hook used to perform various operations on the surface.
456 * (*perform)() is a generic mechanism to add functionality to
462 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
468 int (*perform)(struct ANativeWindow* window, member
581 return window->perform(window, NATIVE_WINDOW_SET_USAGE64, usage); in native_window_set_usage()
620 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop()
631 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count()
[all …]
/aosp_15_r20/prebuilts/vndk/v31/arm64/include/frameworks/native/libs/nativewindow/include/system/
Dwindow.h151 * perform() instead, which supports nanosecond precision.
158 * perform() instead, which supports nanosecond precision.
198 /* Valid operations for the (*perform)() hook.
455 * hook used to perform various operations on the surface.
456 * (*perform)() is a generic mechanism to add functionality to
462 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
468 int (*perform)(struct ANativeWindow* window, member
581 return window->perform(window, NATIVE_WINDOW_SET_USAGE64, usage); in native_window_set_usage()
620 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop()
631 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count()
[all …]
/aosp_15_r20/prebuilts/vndk/v32/x86/include/frameworks/native/libs/nativewindow/include/system/
Dwindow.h151 * perform() instead, which supports nanosecond precision.
158 * perform() instead, which supports nanosecond precision.
198 /* Valid operations for the (*perform)() hook.
455 * hook used to perform various operations on the surface.
456 * (*perform)() is a generic mechanism to add functionality to
462 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
468 int (*perform)(struct ANativeWindow* window, member
581 return window->perform(window, NATIVE_WINDOW_SET_USAGE64, usage); in native_window_set_usage()
620 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop()
631 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count()
[all …]
/aosp_15_r20/prebuilts/vndk/v31/x86/include/frameworks/native/libs/nativewindow/include/system/
Dwindow.h151 * perform() instead, which supports nanosecond precision.
158 * perform() instead, which supports nanosecond precision.
198 /* Valid operations for the (*perform)() hook.
455 * hook used to perform various operations on the surface.
456 * (*perform)() is a generic mechanism to add functionality to
462 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
468 int (*perform)(struct ANativeWindow* window, member
581 return window->perform(window, NATIVE_WINDOW_SET_USAGE64, usage); in native_window_set_usage()
620 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop()
631 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count()
[all …]
/aosp_15_r20/prebuilts/vndk/v32/arm/include/frameworks/native/libs/nativewindow/include/system/
Dwindow.h151 * perform() instead, which supports nanosecond precision.
158 * perform() instead, which supports nanosecond precision.
198 /* Valid operations for the (*perform)() hook.
455 * hook used to perform various operations on the surface.
456 * (*perform)() is a generic mechanism to add functionality to
462 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
468 int (*perform)(struct ANativeWindow* window, member
581 return window->perform(window, NATIVE_WINDOW_SET_USAGE64, usage); in native_window_set_usage()
620 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop()
631 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count()
[all …]
/aosp_15_r20/prebuilts/vndk/v31/arm/include/frameworks/native/libs/nativewindow/include/system/
Dwindow.h151 * perform() instead, which supports nanosecond precision.
158 * perform() instead, which supports nanosecond precision.
198 /* Valid operations for the (*perform)() hook.
455 * hook used to perform various operations on the surface.
456 * (*perform)() is a generic mechanism to add functionality to
462 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
468 int (*perform)(struct ANativeWindow* window, member
581 return window->perform(window, NATIVE_WINDOW_SET_USAGE64, usage); in native_window_set_usage()
620 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop()
631 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count()
[all …]
/aosp_15_r20/prebuilts/vndk/v30/x86_64/include/frameworks/native/libs/nativewindow/include/system/
Dwindow.h151 * perform() instead, which supports nanosecond precision.
158 * perform() instead, which supports nanosecond precision.
198 /* Valid operations for the (*perform)() hook.
454 * hook used to perform various operations on the surface.
455 * (*perform)() is a generic mechanism to add functionality to
461 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
467 int (*perform)(struct ANativeWindow* window, member
580 return window->perform(window, NATIVE_WINDOW_SET_USAGE64, usage); in native_window_set_usage()
619 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop()
630 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count()
[all …]
/aosp_15_r20/prebuilts/vndk/v30/arm/include/frameworks/native/libs/nativewindow/include/system/
Dwindow.h151 * perform() instead, which supports nanosecond precision.
158 * perform() instead, which supports nanosecond precision.
198 /* Valid operations for the (*perform)() hook.
454 * hook used to perform various operations on the surface.
455 * (*perform)() is a generic mechanism to add functionality to
461 * (*perform)() returns -ENOENT if the 'what' parameter is not supported
467 int (*perform)(struct ANativeWindow* window, member
580 return window->perform(window, NATIVE_WINDOW_SET_USAGE64, usage); in native_window_set_usage()
619 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop()
630 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count()
[all …]

12345678910>>...659