Searched refs:valid (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/base/services/java/com/android/server/display/
H A DDisplayViewport.java30 // True if this viewport is valid.
31 public boolean valid; field in class:DisplayViewport
54 valid = viewport.valid;
66 return "DisplayViewport{valid=" + valid
H A DDisplayManagerService.java944 + "created from it was not considered valid: " + deviceInfo);
1040 mDefaultViewport.valid = false;
1041 mExternalTouchViewport.valid = false;
1074 if (!mDefaultViewport.valid
1078 if (!mExternalTouchViewport.valid
1086 viewport.valid = true;
/frameworks/compile/slang/
H A Dslang_rs_export_foreach.cpp59 bool valid = true; local
97 valid = false;
130 valid = false;
155 valid = false;
161 valid = false;
165 valid = false;
172 valid = false;
189 valid = false;
198 if (valid) {
223 valid
234 bool valid = true; local
575 bool valid = true; local
[all...]
H A Dslang_rs_context.cpp223 bool valid = true; local
239 valid = false;
247 valid = false;
253 if (valid) {
263 valid = false;
267 return valid;
/frameworks/av/include/common_time/
H A Dcc_helper.h48 status_t isCommonTimeValid(bool* valid, uint32_t* timelineID);
H A DICommonClock.h72 virtual status_t isCommonTimeValid(bool* valid, uint32_t* timelineID) = 0;
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapFactoryTest.java40 assertTrue("Got invalid FileDescriptor", fd.valid());
/frameworks/av/media/common_time/
H A Dcc_helper.cpp114 CCHELPER_METHOD(isCommonTimeValid(bool* valid, uint32_t* timelineID),
115 isCommonTimeValid(valid, timelineID))
H A DICommonClock.cpp54 virtual status_t isCommonTimeValid(bool* valid, uint32_t* timelineID) { argument
63 *valid = reply.readInt32();
244 bool valid; local
246 status_t status = isCommonTimeValid(&valid, &timelineID);
249 reply->writeInt32(valid);
/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java62 boolean valid = false;
93 valid = true;
104 valid = true;
112 valid = false;
115 if (valid) {
/frameworks/av/media/libstagefright/
H A DMP3Extractor.cpp64 // out, even if there _were_ 10 bytes of valid mp3 audio data...
94 bool valid = false; local
160 // We found what looks like a valid frame,
165 valid = true;
169 valid = false;
178 valid = false;
185 valid = false;
194 if (valid) {
201 ALOGV("no dice, no valid sequence of frames found.");
207 } while (!valid);
[all...]
/frameworks/base/core/java/android/net/http/
H A DCertificateChainValidator.java78 // get a valid SSLSession, close the socket if we fail
167 boolean valid = domain != null
170 if (!valid) {
/frameworks/base/services/common_time/
H A Dcommon_clock_service.cpp41 status_t CommonClockService::isCommonTimeValid(bool* valid, argument
43 return mTimeServer.isCommonTimeValid(valid, timelineID);
H A Dcommon_clock_service.h34 virtual status_t isCommonTimeValid(bool* valid, uint32_t *timelineID);
H A Dcommon_time_server_api.cpp67 status_t CommonTimeServer::isCommonTimeValid(bool* valid, argument
70 *valid = mCommonClock.isValid();
H A Dcommon_time_server.h56 status_t isCommonTimeValid(bool* valid, uint32_t* timelineID);
235 // network synchronization whenever it has a valid network interface to bind
237 // will only participate in network synchronization when it has both a valid
249 bool mBindIfaceValid; // whether or not the bind Iface is valid.
250 bool mBindIfaceDirty; // whether or not the bind Iface is valid.
/frameworks/base/media/java/android/media/
H A DMediaMetadataRetriever.java175 if (!descriptor.valid()) {
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h68 // add reference to this object. returns true if this is a valid object.
170 void setDisplayValid(bool valid);
H A Degl_display.cpp295 // by construction, these are either 0 or valid (possibly terminated)
321 // by construction, these are either 0 or valid (possibly terminated)
420 void egl_display_t::HibernationMachine::setDisplayValid(bool valid) { argument
422 mDpyValid = valid;
/frameworks/base/tools/aidl/
H A Daidl.cpp177 bool valid = false; local
214 valid = (len >= expected.length());
216 if (valid) {
231 valid = (expected == p);
233 valid = !strcasecmp(expected.c_str(), p);
237 if (!valid) {
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java949 int valid = mgl10Ext.glQueryMatrixxOES(mantissa, mantissaOffset,
952 return valid;
957 int valid = mgl10Ext.glQueryMatrixxOES(mantissa, exponent);
959 return valid;
1213 boolean valid = mgl11.glIsBuffer(buffer);
1215 return valid;
1220 boolean valid = mgl11.glIsEnabled(cap);
1222 return valid;
1227 boolean valid = mgl11.glIsTexture(texture);
1229 return valid;
[all...]
/frameworks/base/services/input/
H A DEventHub.h82 bool valid; // true if the information is valid, false otherwise member in struct:android::RawAbsoluteAxisInfo
91 valid = false;
H A DInputReader.cpp1795 if (axis.valid) {
2921 // Ensure we have valid X and Y axes.
2922 if (!mRawPointerAxes.x.valid || !mRawPointerAxes.y.valid) {
3064 if (mRawPointerAxes.touchMajor.valid
3067 } else if (mRawPointerAxes.toolMajor.valid
3118 } else if (mRawPointerAxes.pressure.valid
3137 mHaveTilt = mRawPointerAxes.tiltX.valid && mRawPointerAxes.tiltY.valid;
3173 if (mRawPointerAxes.orientation.valid) {
[all...]
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp735 bool valid = false; local
746 valid = true;
755 valid = true;
758 if (!valid) {
/frameworks/base/core/java/android/os/
H A DMemoryFile.java93 * will fail, but {@link #getFileDescriptor()} will still return a valid file descriptor.
119 return !mFD.valid();
248 * @throws IOException If <code>fd</code> is not a valid file descriptor.

Completed in 687 milliseconds

12