Searched refs:version (Results 126 - 150 of 217) sorted by relevance

123456789

/frameworks/compile/libbcc/runtime/lib/
H A Dgcc_personality_v0.c186 _Unwind_Reason_Code __gcc_personality_v0(int version, _Unwind_Action actions, argument
/frameworks/compile/linkloader/include/
H A DELFHeader.h34 static char const *getVersionStr(uint32_t version);
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h108 char const * version; member in struct:android::egl_display_t::strings_t
/frameworks/base/services/java/com/android/server/
H A DPackageManagerBackupAgent.java63 // version & signature info of each app in a restore set
65 // The version info of each backed-up app as read from the state file
77 Metadata(int version, Signature[] sigs) { argument
78 versionCode = version;
129 // If the stored version string differs, we need to re-backup all
143 * int SDKversion -- the SDK version of the OS itself on the device
180 // We have backed up this app before. Check whether the version
181 // of the backup matches the version of the current app; if they
202 * int version -- [4] the package's versionCode
206 // marshal the version cod
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSInfo.cpp184 ::memcpy(mHeader.version, RSINFO_VERSION, sizeof(mHeader.version));
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java62 /** Current cache version */
367 int version = ois.readByte();
368 if (version != CACHE_VERSION) {
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp54 uint32_t hwcVersion = hwc->common.version;
57 // legacy version encoding
64 uint32_t hwcVersion = hwc->common.version;
67 // legacy version encoding
74 uint32_t version) {
75 return hwcApiVersion(hwc) >= (version & HARDWARE_API_VERSION_2_MAJ_MIN_MASK);
137 ALOGI("Using %s version %u.%u", HWC_HARDWARE_COMPOSER,
158 // hw composer version
239 ALOGE("%s device version %#x unsupported, will not be used",
240 HWC_HARDWARE_COMPOSER, mHwc->common.version);
73 hwcHasApiVersion(const hwc_composer_device_1_t* hwc, uint32_t version) argument
[all...]
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp1135 uint32_t version = flags >> 24; local
1141 if (version == 1) {
1150 } else if (version == 0) {
1190 uint32_t version = versionAndFlags >> 24; local
1194 if (version == 1) {
1199 } else if (version == 0) {
1600 uint32_t version = flags >> 24; local
1603 ALOGV("sidx version %d", version);
1614 if (version
[all...]
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DWifiDisplaySink.cpp438 AString version; local
439 data->getRequestField(2, &version);
440 if (!(version == AString("RTSP/1.0"))) {
/frameworks/base/services/java/com/android/server/power/
H A DElectronBeam.java473 int[] version = new int[2];
474 if (!EGL14.eglInitialize(mEglDisplay, version, 0, version, 1)) {
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduComposer.java486 int version = mPduHeader.getOctet(field);
487 if (0 == version) {
490 appendShortInteger(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
246 metadata.version = tolel(CURRENT_METADATA_VERSION);
403 // server keep the old version. Maybe they'll be able to deal with it
763 metadata.version = fromlel(metadata.version);
765 if (metadata.version > CURRENT_METADATA_VERSION) {
768 ALOGW("Restoring file with unsupported metadata version
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGLTextureViewActivity.java370 int[] version = new int[2];
371 if (!mEgl.eglInitialize(mEglDisplay, version)) {
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DRenameClassAdapter.java231 public void visit(int version, int access, String name, String signature, argument
237 super.visit(version, access, name, signature, superName, interfaces);
/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java136 // the version of the accounts xml file format
1505 String versionString = parser.getAttributeValue(null, "version");
1506 int version;
1508 version = (versionString == null) ? 0 : Integer.parseInt(versionString);
1510 version = 0;
1538 authority = parseAuthority(parser, version);
1642 private AuthorityInfo parseAuthority(XmlPullParser parser, int version) { argument
1675 // If the version is 0 then we are upgrading from a file format that did not
1680 if (version > 0) {
1767 out.attribute(null, "version", Intege
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_mid_hor.s17 ;-- Abstract : ARMv6 optimized version horizontal part of
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java147 final int version = in.readInt();
148 switch (version) {
165 activeTime = (version >= VERSION_ADD_ACTIVE) ? readVarLongArray(in)
177 throw new ProtocolException("unexpected version: " + version);
/frameworks/base/core/java/android/webkit/
H A DWebSettingsClassic.java393 // Add version
394 final String version = Build.VERSION.RELEASE;
395 if (version.length() > 0) {
396 if (Character.isDigit(version.charAt(0))) {
397 // Release is a version, eg "3.1"
398 buffer.append(version);
401 // In this case, use the previous release's version
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java447 * which EGLContext client version to pick.
469 * @param version The EGLContext client version to choose. Use 2 for OpenGL ES 2.0
471 public void setEGLContextClientVersion(int version) { argument
473 mEGLContextClientVersion = version;
1015 int[] version = new int[2];
1016 if(!mEgl.eglInitialize(mEglDisplay, version)) {
1886 "ro.opengles.version",
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java68 int version = 0;
73 version = applicationInfo.targetSdkVersion;
80 appName, version));
81 if (version <= Build.VERSION_CODES.CUPCAKE) {
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java70 // Versioning of the state file. Increment this version
85 // Number of entries in the checksum array at various version numbers
88 4, // version 1
89 5, // version 2 added STATE_WIFI_CONFIG
90 STATE_SIZE // version 3 added STATE_GLOBAL
419 if (DEBUG_BACKUP) Log.d(TAG, "Writing flattened data version " + FULL_BACKUP_VERSION);
461 int version = in.readInt();
462 if (DEBUG_BACKUP) Log.d(TAG, "Flattened data version " + version);
463 if (version <
[all...]
/frameworks/compile/slang/
H A Dslang_rs_context.cpp61 version(0),
77 // For #pragma version
211 // dummy version (so that script->script calls of rsForEach don't behave
/frameworks/native/libs/gui/
H A DSensor.cpp43 mVersion = hwSensor->version;
/frameworks/native/libs/ui/
H A DGraphicBufferAllocator.cpp80 if (mAllocDev->common.version >= 1 && mAllocDev->dump) {
/frameworks/base/services/java/com/android/server/net/
H A DNetworkPolicyManagerService.java200 private static final String ATTR_VERSION = "version";
1159 int version = VERSION_INIT;
1164 version = readIntAttribute(in, ATTR_VERSION);
1165 if (version >= VERSION_ADDED_RESTRICT_BACKGROUND) {
1176 if (version >= VERSION_ADDED_NETWORK_ID) {
1183 if (version >= VERSION_ADDED_TIMEZONE) {
1191 if (version >= VERSION_SPLIT_SNOOZE) {
1193 } else if (version >= VERSION_ADDED_SNOOZE) {
1199 if (version >= VERSION_ADDED_METERED) {
1213 if (version >
[all...]

Completed in 684 milliseconds

123456789