Searched defs:present (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/media/libaudioclient/
H A DIAudioTrack.cpp264 int32_t present; local
265 status_t status = data.readInt32(&present);
266 if (status == NO_ERROR && present != 0) {
270 status = status ?: data.readInt32(&present);
271 if (status == NO_ERROR && present != 0) {
/frameworks/native/include/binder/
H A DParcel.h857 int32_t present; local
858 status_t status = readInt32(&present);
861 if (status != OK || !present) {
/frameworks/native/libs/binder/include/binder/
H A DParcel.h857 int32_t present; local
858 status_t status = readInt32(&present);
861 if (status != OK || !present) {
/frameworks/native/services/surfaceflinger/tests/hwc2/
H A DHwc2TestBuffer.cpp207 void present() const function in class:Hwc2TestEglManager
294 mEglManager.present();
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp924 int32_t present; local
925 status_t status = data.readInt32(&present);
926 if (status == NO_ERROR && present != 0) {
931 status = data.readInt32(&present);
933 if (status == NO_ERROR && present != 0) {
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2.cpp571 Error Display::present(sp<Fence>* outPresentFence) function in class:HWC2::Display
/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java1108 && mNavigationColorViewState.present;
1110 && mNavigationColorViewState.present;
1207 state.present = state.attributes.isPresent(sysUiVis, mWindow.getAttributes().flags, force);
1208 boolean show = state.attributes.isVisible(state.present, color,
2318 boolean present = false; field in class:DecorView.ColorViewState
2360 public boolean isVisible(boolean present, int color, int windowFlags, boolean force) { argument
2361 return present
2367 final boolean present = isPresent(sysUiVis, windowFlags, force);
2368 return isVisible(present, color, windowFlags, force);

Completed in 146 milliseconds