Searched refs:version (Results 51 - 75 of 217) sorted by relevance

123456789

/frameworks/compile/libbcc/runtime/make/
H A DAppleBI.mk51 /Developer/Makefiles/bin/version.pl $(RC_ProjectName) > $(OBJROOT)/version.c; \
52 gcc -arch $* -c ${OBJROOT}/version.c -o version.o; \
/frameworks/compile/linkloader/lib/
H A DELFHeader.cpp91 char const *ELFHeaderHelperMixin::getVersionStr(uint32_t version) { argument
92 switch (version) {
93 default: return "Invalid version";
94 case EV_CURRENT: return "Current version";
/frameworks/native/include/ui/
H A DPixelFormat.h93 inline PixelFormatInfo() : version(sizeof(PixelFormatInfo)) { }
98 size_t version; member in struct:android::PixelFormatInfo
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_egl.cpp28 void GLTrace_eglCreateContext(int version, int contextId) { argument
35 // copy argument version
39 arg_version->add_intvalue(version);
H A Dgltrace_context.h53 int mVersion; /* GL version, e.g: egl_connection_t::GLESv2_INDEX */
69 GLTraceContext(int id, int version, GLTraceState *state, BufferedOutputStream *stream);
106 GLTraceContext *createTraceContext(int version, EGLContext c);
/frameworks/base/core/java/android/content/
H A DSyncStatusInfo.java96 int version = parcel.readInt();
97 if (version != VERSION && version != 1) {
98 Log.w("SyncStatusInfo", "Unknown version: " + version);
115 if (version == 1) {
/frameworks/base/services/java/com/android/server/
H A DServiceWatcher.java61 private int mVersion = Integer.MIN_VALUE; // current best version
137 // check version
138 int version = 0;
140 version = rInfo.serviceInfo.metaData.getInt(EXTRA_SERVICE_VERSION, 0);
143 if (version > mVersion) {
144 bestVersion = version;
172 private void bindToPackageLocked(String packageName, int version) { argument
177 mVersion = version;
178 if (D) Log.d(mTag, "binding " + packageName + " (version " + version
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/include/
H A Dpvmp3decoder_api.h189 int16 version; member in struct:tPVMP3DecoderExternal
210 * Out: Size of the output frame in 16-bit words, This value depends on the mp3 version
/frameworks/base/core/java/android/hardware/usb/
H A DUsbAccessory.java30 * the version of the accessory, and a user visible description of the accessory to the device.
31 * The manufacturer, model and version strings are used by the USB Manager to choose
76 String version, String uri, String serial) {
80 mVersion = version;
126 * Returns the version of the accessory.
128 * @return the accessory version
201 String version = in.readString();
204 return new UsbAccessory(manufacturer, model, description, version, uri, serial);
75 UsbAccessory(String manufacturer, String model, String description, String version, String uri, String serial) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DApnSetting.java104 int version;
107 version = 2;
110 version = 1;
129 if (version == 1) {
/frameworks/base/include/androidfw/
H A DObbFile.h62 void setVersion(int32_t version) { argument
63 mVersion = version;
121 /* Package version this ObbFile is associated with */
H A DInputDevice.h30 bus(0), vendor(0), product(0), version(0) {
40 uint16_t version; member in struct:android::InputDeviceIdentifier
133 * names to try based on the device name, vendor, product, and version.
/frameworks/base/tests/RenderScriptTests/SampleTest/src/com/android/rs/sample/
H A Dsample.rs17 #pragma version(1)
/frameworks/compile/libbcc/bcinfo/
H A DBitcodeTranslator.cpp60 * The minimum version which does not require translation (i.e. is already
69 unsigned int version)
71 mTranslatedBitcodeSize(0), mVersion(version) {
102 ALOGE("Invalid API version: %u is out of range ('%u' - '%u')", mVersion,
107 // We currently don't need to transcode any API version higher than 14 or
108 // the current API version (i.e. 10000)
116 // then write the bitcode back out in a more modern (acceptable) version.
131 ALOGE("No compatible bitcode reader for API version %d", mVersion);
68 BitcodeTranslator(const char *bitcode, size_t bitcodeSize, unsigned int version) argument
/frameworks/native/services/surfaceflinger/
H A DGLExtensions.cpp38 GLubyte const* version,
46 mVersion = (char const*)version;
35 initWithGLStrings( GLubyte const* vendor, GLubyte const* renderer, GLubyte const* version, GLubyte const* extensions, char const* egl_vendor, char const* egl_version, char const* egl_extensions) argument
/frameworks/rs/
H A Drs.h54 RsContext rsContextCreate(RsDevice dev, uint32_t version, uint32_t sdkVersion);
55 RsContext rsContextCreateGL(RsDevice dev, uint32_t version, uint32_t sdkVersion,
/frameworks/support/renderscript/v8/rs_support/
H A Drs.h54 RsContext rsContextCreate(RsDevice dev, uint32_t version, uint32_t sdkVersion);
55 RsContext rsContextCreateGL(RsDevice dev, uint32_t version, uint32_t sdkVersion,
/frameworks/base/core/jni/
H A Dandroid_backup_BackupHelperDispatcher.cpp35 int version; member in struct:android::chunk_header_v1
69 amt = read(fd, &flattenedHeader.version,
77 if (flattenedHeader.version != VERSION_1_HEADER) {
78 ALOGW("Skipping unknown header version: 0x%08x, %d bytes", flattenedHeader.version,
90 ALOGD(" version=0x%08x", flattenedHeader.version);
185 header.version = VERSION_1_HEADER;
/frameworks/base/services/common_time/
H A Dcommon_time_server_packets.h41 // protocol version of the packet
42 uint16_t version; member in class:android::TimeServicePacketHeader
61 version = kCurVersion;
69 (version == kCurVersion) &&
/frameworks/base/cmds/installd/
H A Dinstalld.c333 // Read current filesystem layout version to handle upgrade paths
341 int version = oldVersion; local
372 if (version == 0) {
437 version = 1;
444 if (version == 1) {
461 version = 2;
472 // Persist layout version if changed
473 if (version != oldVersion) {
474 if (fs_write_atomic_int(version_path, version) == -1) {
475 ALOGE("Failed to save version t
[all...]
/frameworks/native/services/sensorservice/
H A DRotationVectorSensor.cpp67 hwSensor.version = 3;
116 hwSensor.version = 1;
/frameworks/av/media/libstagefright/include/
H A DID3.h43 Version version() const;
/frameworks/base/services/java/com/android/server/updates/
H A DConfigUpdateInstallReceiver.java81 // get the version from the extras
87 // get the version currently being used
92 Slog.i(TAG, "Not installing, new version is <= current version");
144 throw new IllegalStateException("Missing required version number, ignoring.");
216 private boolean verifySignature(String content, int version, String requiredPrevious, argument
221 signer.update(Long.toString(version).getBytes());
258 private void install(String content, int version) throws IOException { argument
260 writeUpdate(updateDir, updateVersion, Long.toString(version));
/frameworks/compile/libbcc/runtime/make/platform/
H A Dclang_darwin.mk2 # version of the OS. The issue is that the backend may use functions which were
4 # with a version of the library which contains private_extern definitions of all
/frameworks/compile/mclinker/lib/MC/
H A DMCLDInfo.cpp68 const char* MCLDInfo::version() function in class:MCLDInfo

Completed in 585 milliseconds

123456789