Searched refs:out (Results 476 - 500 of 654) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/android/view/
H A DLayoutInflater.java467 System.out.println("**************************");
468 System.out.println("Creating root view: "
470 System.out.println("**************************");
488 System.out.println("Creating params from root: " +
501 System.out.println("-----> start inflating children");
506 System.out.println("-----> done inflating children");
720 if (DEBUG) System.out.println("******** Creating view: " + name);
750 if (DEBUG) System.out.println("Created view is: " + view);
/frameworks/base/core/java/com/android/internal/appwidget/
H A DIAppWidgetService.aidl36 out List<RemoteViews> updatedViews);
/frameworks/base/core/java/com/android/internal/os/
H A DProcessCpuTracker.java197 // filter out kernel processes.
451 // This is a possible way to filter out processes that
577 private long[] getCpuSpeedTimes(long[] out) { argument
578 long[] tempTimes = out;
581 if (out == null) {
600 if (localLOGV && out == null) {
609 if (out == null) {
610 out = new long[speed];
613 System.arraycopy(tempTimes, 0, out, 0, speed);
615 return out;
[all...]
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp96 // Find out how many vertices we need to transform
824 * @param out an ETC1 compressed version of the data.
828 jobject in, jint validPixelMask, jobject out) {
834 BufferHelper outB(env, out);
835 if (inB.checkPointer("in") && outB.checkPointer("out")) {
839 doThrowIAE(env, "out's remaining data < ENCODED_BLOCK_SIZE");
852 * @param out a pointer to a ETC_DECODED_BLOCK_SIZE array of bytes that represent a
857 jobject in, jobject out){
859 BufferHelper outB(env, out);
860 if (inB.checkPointer("in") && outB.checkPointer("out")) {
827 etc1_encodeBlock(JNIEnv *env, jclass clazz, jobject in, jint validPixelMask, jobject out) argument
856 etc1_decodeBlock(JNIEnv *env, jclass clazz, jobject in, jobject out) argument
886 etc1_encodeImage(JNIEnv *env, jclass clazz, jobject in, jint width, jint height, jint pixelSize, jint stride, jobject out) argument
918 etc1_decodeImage(JNIEnv *env, jclass clazz, jobject in, jobject out, jint width, jint height, jint pixelSize, jint stride) argument
[all...]
/frameworks/base/include/androidfw/
H A DAssetManager.h303 bool getOverlay(size_t idx, asset_path* out) const;
355 bool getOverlay(const String8& path, size_t idx, asset_path* out) const;
/frameworks/base/native/android/
H A Dconfiguration.cpp36 void AConfiguration_fromAssetManager(AConfiguration* out, AAssetManager* am) { argument
37 ((AssetManager*)am)->getConfiguration(out);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DRemotePrintDocument.java338 OutputStream out = null;
342 out = contentResolver.openOutputStream(uri);
349 out.write(buffer, 0, readByteCount);
355 IoUtils.closeQuietly(out);
892 OutputStream out = null;
902 out = new FileOutputStream(file);
921 out.write(buffer, 0, readByteCount);
927 IoUtils.closeQuietly(out);
/frameworks/base/services/core/java/com/android/server/am/
H A DBatteryStatsService.java165 Parcel out = Parcel.obtain();
166 mStats.writeToParcel(out, 0);
167 byte[] data = out.marshall();
168 out.recycle();
177 Parcel out = Parcel.obtain();
178 mStats.writeToParcel(out, 0);
179 byte[] data = out.marshall();
180 out.recycle();
/frameworks/base/tools/preload/
H A DMemoryUsage.java192 System.err.println("Timed out while measuring "
274 private static void copy(InputStream in, OutputStream out) { argument
279 out.write(buffer, 0, read);
/frameworks/rs/
H A DrsScriptC_Lib.cpp230 Allocation *in, Allocation *out,
233 target->runForEach(rsc, /* root slot */ 0, in, out, usr, usrBytes, call);
228 rsrForEach(Context *rsc, Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrBytes, const RsScriptCall *call) argument
/frameworks/wilhelm/tests/sandbox/
H A Dintbufq.c266 goto out;
276 out:
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java508 // Comment this out for now.
1099 XmlSerializer out = new FastXmlSerializer();
1100 out.setOutput(stream, "utf-8");
1101 out.startDocument(null, true);
1103 out.startTag(null, "wp");
1104 out.attribute(null, "width", Integer.toString(wallpaper.width));
1105 out.attribute(null, "height", Integer.toString(wallpaper.height));
1107 out.attribute(null, "paddingLeft", Integer.toString(wallpaper.padding.left));
1110 out.attribute(null, "paddingTop", Integer.toString(wallpaper.padding.top));
1113 out
[all...]
/frameworks/av/camera/
H A DCameraMetadata.cpp428 camera_metadata_t** out) {
434 if (out) {
435 *out = NULL;
507 if (out) {
508 ALOGV("%s: Set out metadata to %p", __FUNCTION__, metadata);
509 *out = metadata;
427 readFromParcel(const Parcel& data, camera_metadata_t** out) argument
/frameworks/base/core/java/android/os/
H A DDebug.java125 /** The dirty dalvik pages that have been swapped out. */
144 /** The dirty native pages that have been swapped out. */
163 /** The dirty pages used by anyting else that have been swapped out. */
248 * Return total swapped out memory in kB.
396 //System.out.println("debugging not enabled, not waiting");
403 System.out.println("Sending WAIT chunk");
415 System.out.println("Debugger has connected");
429 System.out.println("debugger detached?");
434 System.out.println("waiting for debugger to settle...");
438 System.out
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp374 // Timed out. Not yet connected.
923 static void H(const AString &s, AString *out) { argument
924 out->clear();
940 out->append(&nibble, 1);
948 out->append(&nibble, 1);
980 AString out; local
981 encodeBase64(tmp.c_str(), tmp.size(), &out);
985 fragment.append(out);
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkStatsHistoryTest.java387 final ByteArrayOutputStream out = new ByteArrayOutputStream();
388 before.writeToStream(new DataOutputStream(out));
389 out.close();
391 final ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
461 final ByteArrayOutputStream out = new ByteArrayOutputStream();
462 writeVarLong(new DataOutputStream(out), before);
464 final ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
/frameworks/av/media/libstagefright/
H A DWAVExtractor.cpp401 MediaBuffer **out, const ReadOptions *options) {
402 *out = NULL;
526 *out = buffer;
400 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DSoftAACEncoder.cpp401 uint8_t *out = outHeader->pBuffer + outHeader->nOffset; local
402 memcpy(out, mAudioSpecificConfigData, sizeof(mAudioSpecificConfigData));
406 hexdump(out, sizeof(mAudioSpecificConfigData));
420 // We do the following until we run out of buffers.
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s44 ; * [out] ppBitStream *ppBitStream is updated after the block is decoded,
47 ; * [out] pBitOffset *pBitOffset is updated so that it points to the
50 ; * [out] pDstMVCurMB pointer to the motion vector buffer of the current
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP_s.s44 ; * [out] ppBitStream *ppBitStream is updated after the block is decoded,
47 ; * [out] pBitOffset *pBitOffset is updated so that it points to the
50 ; * [out] pDstMVCurMB pointer to the motion vector buffer of the current
H A DomxVCM4P2_PredictReconCoefIntra_s.s48 ; * [out] pSrcDst pointer to the coefficient buffer which contains
51 ; * [out] pPredBufRow pointer to the updated coefficient row buffer
52 ; * [out] pPredBufCol pointer to the updated coefficient column buffer
/frameworks/base/media/java/android/media/browse/
H A DMediaBrowser.java201 * Null out the variables and unbind from the service. This doesn't include
579 public void writeToParcel(Parcel out, int flags) { argument
580 out.writeInt(mFlags);
581 mDescription.writeToParcel(out, flags);
750 // Clear out what we set in onServiceConnected
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java150 ByteArrayOutputStream out = new ByteArrayOutputStream();
154 out.write(buffer, 0, length);
156 xmlBytes = out.toByteArray();
/frameworks/native/services/inputflinger/
H A DInputReader.cpp306 // Send out a message that the describes the changed input devices.
311 // Flush queued events out to the listener.
1579 // out of sync with the initial state of the events in the evdev buffer.
3428 Calibration& out = mCalibration; local
3431 out.sizeCalibration = Calibration::SIZE_CALIBRATION_DEFAULT;
3435 out.sizeCalibration = Calibration::SIZE_CALIBRATION_NONE;
3437 out.sizeCalibration = Calibration::SIZE_CALIBRATION_GEOMETRIC;
3439 out.sizeCalibration = Calibration::SIZE_CALIBRATION_DIAMETER;
3441 out.sizeCalibration = Calibration::SIZE_CALIBRATION_BOX;
3443 out
4357 PointerCoords& out = mCurrentCookedPointerData.pointerCoords[i]; local
[all...]
/frameworks/av/services/audioflinger/
H A DAudioResamplerDyn.cpp480 void AudioResamplerDyn<TC, TI, TO>::resample(int32_t* out, size_t outFrameCount,
483 (this->*mResampleFunc)(reinterpret_cast<TO*>(out), outFrameCount, provider);
488 void AudioResamplerDyn<TC, TI, TO>::resample(TO* out, size_t outFrameCount, argument
491 // TODO Mono -> Mono is not supported. OUTPUT_CHANNELS reflects minimum of stereo out.
575 &out[outputIndex],
593 // We arrive here when we're finished or when the input buffer runs out.
573 ALOG_ASSERT(phaseFraction < phaseWrapLimit); fir<CHANNELS, LOCKED, STRIDE>( &out[outputIndex], phaseFraction, phaseWrapLimit, coefShift, halfNumCoefs, coefs, impulse, volumeSimd); outputIndex += OUTPUT_CHANNELS; phaseFraction += phaseIncrement; while (phaseFraction >= phaseWrapLimit) argument

Completed in 1024 milliseconds

<<11121314151617181920>>