Searched refs:version (Results 151 - 175 of 371) sorted by relevance

1234567891011>>

/frameworks/rs/api/
H A Drs_io.spec27 version: 16
42 version: 16
/frameworks/support/v4/java/android/support/v4/view/
H A DViewParentCompat.java203 final int version = Build.VERSION.SDK_INT;
204 if (version >= 21) {
206 } else if (version >= 19) {
208 } else if (version >= 14) {
H A DMenuItemCompat.java247 final int version = android.os.Build.VERSION.SDK_INT;
248 if (version >= 14) {
250 } else if (version >= 11) {
/frameworks/base/core/java/android/net/
H A DNetworkPolicy.java224 int version = in.readInt();
225 if (version < 1 || version > BACKUP_VERSION) {
H A DNetworkTemplate.java490 int version = in.readInt();
491 if (version < 1 || version > BACKUP_VERSION) {
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbHostManager.java116 String manufacturerName, String productName, int version, String serialNumber) {
153 // Create version string in "%.%" format
154 String versionString = Integer.toString(version >> 8) + "." + (version & 0xFF);
114 beginUsbDeviceAdded(String deviceName, int vendorID, int productID, int deviceClass, int deviceSubclass, int deviceProtocol, String manufacturerName, String productName, int version, String serialNumber) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataCallResponse.java41 public int version = 0; field in class:DataCallResponse
81 .append("version=").append(version)
245 if (version < 4) {
/frameworks/base/packages/Osu/src/com/android/hotspot2/
H A DOMADMAdapter.java322 String version;
325 return "Android " + SystemProperties.get("ro.build.version.release");
327 version = SystemProperties.get("ro.build.version.full");
328 if (null == version || version.equals("")) {
330 + SystemProperties.get("ro.build.config.version", null) + "~"
331 + SystemProperties.get("gsm.version.baseband", null) + "~"
338 return version;
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp306 unsigned int version = 0; local
310 version = bcWrapper.getTargetAPI();
315 version = 12;
319 printf("targetAPI: %u\n", version);
325 BT.reset(new bcinfo::BitcodeTranslator(bitcode, bitcodeSize, version));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DOMADMAdapter.java314 String version;
317 return "Android " + SystemProperties.get("ro.build.version.release");
319 version = SystemProperties.get("ro.build.version.full");
320 if (null == version || version.equals("")) {
322 + SystemProperties.get("ro.build.config.version", null) + "~"
323 + SystemProperties.get("gsm.version.baseband", null) + "~"
330 return version;
/frameworks/av/media/libstagefright/
H A Davc_utils.cpp647 unsigned version = (header >> 19) & 3; local
649 if (version == 0x01) {
676 if (version == 2 /* V2 */) {
678 } else if (version == 0 /* V2.5 */) {
698 (version == 3 /* V1 */)
730 if (version == 3 /* V1 */) {
751 if (version == 3 /* V1 */) {
/frameworks/base/services/usage/java/com/android/server/usage/
H A DUsageStatsDatabase.java46 // Current version of the backup schema
74 mVersionFile = new File(dir, "version");
225 * Is this a system update since we started tracking build fingerprint in the version file?
232 int version;
238 version = Integer.parseInt(reader.readLine());
247 version = 0;
250 if (version != CURRENT_VERSION) {
251 Slog.i(TAG, "Upgrading from version " + version + " to " + CURRENT_VERSION);
252 doUpgradeLocked(version);
[all...]
/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/rs/driver/
H A DrsdGL.cpp140 ALOGE(" GL Version: %s", dc->gl.gl.version);
350 dc->gl.gl.version = glGetString(GL_VERSION);
362 if (strlen((const char *)dc->gl.gl.version) > 9) {
363 if (!memcmp(dc->gl.gl.version, "OpenGL ES-CM", 12)) {
364 verptr = (const char *)dc->gl.gl.version + 12;
366 if (!memcmp(dc->gl.gl.version, "OpenGL ES ", 10)) {
367 verptr = (const char *)dc->gl.gl.version + 9;
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DSerializer.cpp47 const char *const PolicySerializer::versionAttribute = "version";
411 const char ModuleTraits::Attributes::version[] = "halVersion"; member in class:android::ModuleTraits::Attributes
421 uint32_t version = AUDIO_DEVICE_API_VERSION_MIN; local
422 string versionLiteral = getXmlAttribute(root, Attributes::version);
426 version = HARDWARE_DEVICE_API_VERSION(major, minor);
428 version, major, minor);
433 module = new Element(name.c_str(), version);
613 string version = getXmlAttribute(cur, versionAttribute); local
614 if (version.empty()) {
615 ALOGE("%s: No version foun
[all...]
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.cpp501 static void print_header(std::string version) { argument
526 dump_file(NULL, "/proc/version");
528 printf("Bugreport format version: %s\n", version.c_str());
638 static void dumpstate(const std::string& screenshot_path, const std::string& version) { argument
941 "[-z]] [-s] [-S] [-q] [-B] [-P] [-R] [-V version]\n"
957 " -V: sets the bugreport format version (valid values: %s)\n",
1044 std::string version = VERSION_DEFAULT; local
1089 case 'V': version = optarg; break;
1117 if (version !
[all...]
/frameworks/base/core/java/com/android/server/
H A DSystemConfig.java361 int fversion = XmlUtils.readIntAttribute(parser, "version", 0);
504 private void addFeature(String name, int version) { argument
509 fi.version = version;
512 fi.version = Math.max(fi.version, version);
/frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
H A DLocalizeDependenciesTask.groovy99 return id.group + ":" + id.name + ":" + id.version;
103 return artifact.groupId + ":" + artifact.artifactId + ":" + artifact.version;
144 "/" + artifact.version
/frameworks/support/design/
H A DAndroid.mk22 # Build the resources using the latest applicable SDK version.
24 # SDK version than the resources. The resources library and the R class that it
33 LOCAL_AAPT_FLAGS := --no-version-vectors
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteProviderService.java152 private boolean onRegisterClient(Messenger messenger, int requestId, int version) { argument
153 if (version >= CLIENT_VERSION_1) {
156 ClientRecord client = new ClientRecord(messenger, version);
160 Log.d(TAG, client + ": Registered, version=" + version);
504 public ClientRecord(Messenger messenger, int version) { argument
506 mVersion = version;
/frameworks/av/media/img_utils/src/
H A DDngUtils.cpp435 uint8_t version[] = {1, 3, 0, 0};
436 err = mEndianOut.write(version, 0, NELEMS(version));
/frameworks/base/core/java/com/android/internal/os/
H A DRuntimeInit.java177 result.append(System.getProperty("java.vm.version")); // such as 1.1.0
180 String version = Build.VERSION.RELEASE; // "1.0" or "3.4b5"
181 result.append(version.length() > 0 ? version : "1.0");
277 * @param targetSdkVersion target SDK version
300 * @param targetSdkVersion target SDK version
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDocumentInfo.java82 final int version = in.readInt();
83 switch (version) {
99 throw new ProtocolException("Unknown version " + version);
H A DRootInfo.java121 final int version = in.readInt();
122 switch (version) {
136 throw new ProtocolException("Unknown version " + version);
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp287 uint32_t version = wrapper.getCompilerVersion(); local
288 if (version < kSlangMinimumFixedStructureNames) {
289 ALOGE("Found invalid legacy bitcode compiled with a version %u llvm-rs-cc "
290 "used with an assertion build", version);

Completed in 2009 milliseconds

1234567891011>>