Searched defs:version (Results 76 - 100 of 118) sorted by relevance

12345

/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsStorage.java85 CredentialHash(byte[] hash, int version) { argument
87 this.version = version;
93 this.version = VERSION_GATEKEEPER;
98 int version; field in class:LockSettingsStorage.CredentialHash
132 int version;
137 version = mCache.getVersion();
152 mCache.putKeyValueIfUnchanged(key, result, userId, version);
157 int version;
163 version
547 putKeyValueIfUnchanged(String key, Object value, int userId, int version) argument
563 putFileIfUnchanged(String key, byte[] value, int version) argument
582 putIfUnchanged(int type, String key, Object value, int userId, int version) argument
[all...]
/frameworks/base/services/core/java/com/android/server/location/
H A DFlpHardwareProvider.java158 // Returns the current version of the FLP HAL. This depends both on the version of the
160 // capabilities callback on initialization. Assume original version until we get
171 private void setVersion(int version) { argument
172 mVersion = version;
/frameworks/base/services/core/jni/
H A Dcom_android_server_hdmi_HdmiCecController.cpp56 // Get CEC version from driver.
219 int version = 0; local
220 mDevice->get_version(mDevice, &version);
221 return version;
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbSettingsManager.java376 // USB accessory version (or null for unspecified)
379 public AccessoryFilter(String manufacturer, String model, String version) { argument
382 mVersion = version;
395 String version = null;
406 } else if ("version".equals(name)) {
407 version = value;
410 return new AccessoryFilter(manufacturer, model, version);
422 serializer.attribute(null, "version", mVersion);
/frameworks/compile/slang/
H A Dslang_backend.cpp468 int version = mContext->getVersion(); local
469 if (version == 0) {
470 // Not setting a version is an error
475 "missing pragma for version in source file"));
477 slangAssert(version == 1);
H A Dslang_rs_context.h101 int version; member in class:slang::RSContext
298 int getVersion() const { return version; }
300 version = v;
/frameworks/native/services/inputflinger/host/
H A DInputDriver.cpp53 int32_t version; member in struct:input_device_identifier
218 idi.version = id->version;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer_hwc1.cpp55 uint32_t hwcVersion = hwc->common.version;
60 uint32_t hwcVersion = hwc->common.version;
65 uint32_t version) {
66 return hwcApiVersion(hwc) >= (version & HARDWARE_API_VERSION_2_MAJ_MIN_MASK);
134 ALOGI("Using %s version %u.%u", HWC_HARDWARE_COMPOSER,
155 // hw composer version
231 ALOGE("%s device version %#x unsupported, will not be used",
232 HWC_HARDWARE_COMPOSER, mHwc->common.version);
766 // On version 1.0, the OpenGL ES target surface is communicated
882 if (mFbDev && mFbDev->common.version >
64 hwcHasApiVersion(const hwc_composer_device_1_t* hwc, uint32_t version) argument
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp98 // now figure out what version of GL did we actually get
118 GlesVersion version = parseGlesVersion( extensions.getVersion() ); local
123 switch (version) {
140 ALOGI("version : %s", extensions.getVersion());
194 ALOGW("Unrecognized OpenGL ES version: %d.%d", major, minor);
431 ALOGI("version : %s", eglQueryString(display, EGL_VERSION));
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DOpReorderTest.java364 if (item.id == clone.id && item.version == clone.version) {
402 items.get(index).version = items.get(index).version + 1;
628 int version; field in class:OpReorderTest.Item
630 Item(int id, int version) { argument
632 this.version = version;
640 return new Item(other.id, other.version);
645 assertEquals(logPrefix + "\n" + item1 + " vs " + item2, item1.version, item
[all...]
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp1098 AString version; local
1099 data->getRequestField(2, &version);
1100 if (!(version == AString("RTSP/1.0"))) {
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java861 * Gets the database version.
863 * @return the database version
870 * Sets the database version.
872 * @param version the new database version
874 public void setVersion(int version) { argument
875 execSQL("PRAGMA user_version = " + version);
1740 * Returns true if the new version code is greater than the current database version.
1742 * @param newVersion The new version cod
[all...]
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareImpl.java184 public void setVersion(int version) { argument
185 mVersion = version;
/frameworks/base/core/java/android/hardware/radio/
H A DRadioManager.java112 ModuleProperties(int id, int classId, String implementor, String product, String version, argument
119 mVersion = version;
157 /** Human readable broadcast radio module version number
158 * @return the radio module version.
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp47 * - 4-byte version number of the metadata, little endian (0x00000001 for v1)
52 * restore code does not recognize the metadata version, it can still
57 * - 4 byte version number === 0x00000001 (little endian)
63 int version; member in struct:android::file_metadata_v1
241 metadata.version = tolel(CURRENT_METADATA_VERSION);
764 metadata.version = fromlel(metadata.version);
766 if (metadata.version > CURRENT_METADATA_VERSION) {
769 ALOGW("Restoring file with unsupported metadata version %d (currently %d)",
770 metadata.version, CURRENT_METADATA_VERSIO
[all...]
/frameworks/base/services/net/java/android/net/apf/
H A DApfGenerator.java365 * Set version of APF instruction set to generate instructions for. Returns {@code true}
366 * if generating for this version is supported, {@code false} otherwise.
368 public boolean setApfVersion(int version) { argument
369 // This version number syncs up with APF_VERSION in hardware/google/apf/apf_interpreter.h
370 return version == 2;
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java520 public void visit(int version, int access, String name, argument
H A DDependencyFinder.java397 public void visit(int version, int access, String name, argument
/frameworks/native/cmds/installd/
H A Dinstalld.cpp567 // Read current filesystem layout version to handle upgrade paths
575 int version = oldVersion; local
577 if (version < 2) {
579 version = 2;
587 if (version == 2) {
648 version = 3;
651 // Persist layout version if changed
652 if (version != oldVersion) {
653 if (fs_write_atomic_int(version_path, version) == -1) {
654 ALOGE("Failed to save version t
[all...]
/frameworks/opt/net/wifi/service/lib/
H A Dwifi_hal_stub.cpp370 NanVersion* version) {
380 u32 *version, u32 *max_len) {
369 wifi_nan_get_version_stub(wifi_handle handle, NanVersion* version) argument
379 wifi_get_packet_filter_capabilities_stub(wifi_interface_handle handle, u32 *version, u32 *max_len) argument
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DProcessStats.java157 // Current version of the parcel format.
642 private void readCompactedLongArray(Parcel in, int version, long[] array, int num) { argument
643 if (version <= 10) {
679 private String readCommonString(Parcel in, int version) { argument
680 if (version <= 9) {
897 int version = in.readInt();
898 if (version != PARCEL_VERSION) {
899 mReadError = "bad version: " + version;
930 readCompactedLongArray(in, version, mMemFactorDuration
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java448 * which EGLContext client version to pick.
470 * @param version The EGLContext client version to choose. Use 2 for OpenGL ES 2.0
472 public void setEGLContextClientVersion(int version) { argument
474 mEGLContextClientVersion = version;
1027 int[] version = new int[2];
1028 if(!mEgl.eglInitialize(mEglDisplay, version)) {
1969 "ro.opengles.version",
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java139 // the version of the accounts xml file format
1454 String versionString = parser.getAttributeValue(null, "version");
1455 int version;
1457 version = (versionString == null) ? 0 : Integer.parseInt(versionString);
1459 version = 0;
1487 authority = parseAuthority(parser, version);
1616 private AuthorityInfo parseAuthority(XmlPullParser parser, int version) { argument
1664 // If the version is 0 then we are upgrading from a file format that did not
1669 if (version > 0) {
1786 out.attribute(null, "version", Intege
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockPackageManager.java846 public boolean hasSystemFeature(String name, int version) { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgePackageManager.java330 public boolean hasSystemFeature(String name, int version) { argument

Completed in 602 milliseconds

12345