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

1234

/frameworks/base/services/core/java/com/android/server/pm/
H A DSettings.java99 * Current version of the package database. Set it to the latest version in
110 * Insert constant values here that describe the upgrade reason. The version
115 * The initial version of the database.
178 // These are the last platform API version we were using for
185 * The current database version for apps on internal storage. This is
187 * tied to an SDK version.
354 // version. so at this point we need a new PackageSetting that
484 // and data partition. Just let the most recent version
682 // Update version cod
932 isInternalDatabaseVersionOlderThan(int version) argument
940 isExternalDatabaseVersionOlderThan(int version) argument
[all...]
/frameworks/rs/
H A DrsContext.cpp263 // If we can't find the C variant, we go looking for the C++ version.
962 extern "C" RsContext rsContextCreate(RsDevice vdev, uint32_t version, uint32_t sdkVersion, argument
974 RsContext rsContextCreateGL(RsDevice vdev, uint32_t version, argument
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp1174 // Set DNG version information
1175 uint8_t version[4] = {1, 4, 0, 0}; local
1176 BAIL_IF_INVALID(writer->addEntry(TAG_DNGVERSION, 4, version, TIFF_IFD_0),
1595 uint8_t version[] = {2, 3, 0, 0}; local
1596 BAIL_IF_INVALID(writer->addEntry(TAG_GPSVERSIONID, 4, version,
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java212 * broadcast in version 1.0, but it is no longer sticky.
578 * Returns the software version number for the device, for example,
579 * the IMEI/SV for GSM phones. Return null if the software version is
590 * Returns the software version number for the device, for example,
591 * the IMEI/SV for GSM phones. Return null if the software version is
2930 * This version does not take a default value. If the setting has not
3865 * Set baseband version for the default phone.
3867 * @param version baseband version
3870 public void setBasebandVersion(String version) { argument
3882 setBasebandVersionForPhone(int phoneId, String version) argument
[all...]
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp958 uint8_t version; local
959 if (mDataSource->readAt(data_offset, &version, 1) < 1) {
978 if (version == 1) {
983 } else if (version == 0) {
1053 // tenc box contains 1 byte version, 3 byte flags, 3 byte default algorithm id, one byte
1151 uint8_t version; local
1153 data_offset, &version, sizeof(version))
1154 < (ssize_t)sizeof(version)) {
1160 if (version
2014 uint32_t version = flags >> 24; local
2127 uint8_t version; local
3219 uint8_t version; local
3282 uint8_t version; local
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java198 // Current version of the parcel format.
1474 private void readCompactedLongArray(Parcel in, int version, long[] array, int num) { argument
1475 if (version <= 10) {
1511 private String readCommonString(Parcel in, int version) { argument
1512 if (version <= 9) {
1731 int version = in.readInt();
1732 if (version != PARCEL_VERSION) {
1733 mReadError = "bad version: " + version;
1770 readCompactedLongArray(in, version, mLong
[all...]
/frameworks/base/include/androidfw/
H A DResourceTypes.h1062 uint32_t version; member in union:android::ResTable_config::__anon922
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java590 /* We're disconnected so we don't know the ril version */
3210 * @param rilVer is the version of the ril or -1 if disconnected.
3487 private DataCallResponse getDataCallResponse(Parcel p, int version) { argument
3490 dataCall.version = version;
3491 if (version < 5) {
3522 if (version >= 10) {
3528 if (version >= 11) {
3561 dataCall.version = ver;
3897 int version
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp243 const uint32_t version = htodl(*(reinterpret_cast<const uint32_t*>(idmap) + 1)); local
244 if (version != IDMAP_CURRENT_VERSION) {
247 ALOGW("idmap: version mismatch in header (is 0x%08x, expected 0x%08x)",
248 version, IDMAP_CURRENT_VERSION);
1821 diff = (int32_t)(version - o.version);
1885 if (version != o.version) {
1886 return version < o.version
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java96 // Current on-disk Parcel version
1122 public void setUpdateVersion(int version) { argument
1123 mUpdateVersion = version;
1844 KernelWakelockStats(int count, long totalTime, int version) { argument
1847 mVersion = version;
7886 final int version = in.readInt();
7887 if (version != VERSION) {
7888 Slog.w("BatteryStats", "readFromParcel: version got " + version

Completed in 289 milliseconds

1234