Searched refs:out (Results 176 - 200 of 546) sorted by relevance

1234567891011>>

/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DResourceLoadingTest.java58 System.out.println("loadedScene = " + loadedScene);
60 System.out.println("loadedTransition = " + loadedTransition);
62 System.out.println("Problem loading scene resource: " + e);
/frameworks/av/cmds/stagefright/
H A DSineSource.h20 MediaBuffer **out, const ReadOptions *options = NULL);
/frameworks/av/libvideoeditor/vss/common/inc/
H A DVideoEditorResampler.h29 void LVAudioresample_LowQuality(M4OSA_Int16* out, M4OSA_Int16* input,
/frameworks/av/media/libstagefright/codecs/gsm/dec/
H A DSoftGSM.h57 static int DecodeGSM(gsm handle, int16_t *out, uint8_t *in, size_t inSize);
/frameworks/base/core/java/android/gesture/
H A DGestureStore.java226 DataOutputStream out = null;
236 out = new DataOutputStream((stream instanceof BufferedOutputStream) ? stream :
239 out.writeShort(FILE_FORMAT_VERSION);
241 out.writeInt(maps.size());
249 out.writeUTF(key);
251 out.writeInt(count);
254 examples.get(i).serialize(out);
258 out.flush();
267 if (closeStream) GestureUtils.closeStream(out);
/frameworks/base/core/java/android/text/util/
H A DRfc822Tokenizer.java45 public static void tokenize(CharSequence text, Collection<Rfc822Token> out) { argument
66 out.add(new Rfc822Token(name.toString(),
70 out.add(new Rfc822Token(null,
151 out.add(new Rfc822Token(name.toString(),
155 out.add(new Rfc822Token(null,
172 ArrayList<Rfc822Token> out = new ArrayList<Rfc822Token>();
173 tokenize(text, out);
174 return out.toArray(new Rfc822Token[out.size()]);
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLog_Delegate.java46 System.out.println(prefix + msg);
/frameworks/compile/libbcc/tools/build/
H A Dgen-build-info.py40 out, err = proc.communicate()
43 rev_sha1 = out.strip()
50 out, err = proc.communicate()
53 if out.find('(working directory clean)') == -1:
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java324 System.out.print("package:");
326 System.out.print(info.applicationInfo.sourceDir);
327 System.out.print("=");
329 System.out.print(info.packageName);
331 System.out.print(" installer=");
332 System.out.print(mPm.getInstallerPackageName(info.packageName));
334 System.out.println();
377 System.out.print("feature:");
378 if (fi.name != null) System.out.println(fi.name);
379 else System.out
[all...]
/frameworks/base/services/java/com/android/server/content/
H A DSyncStorageEngine.java102 // TODO: i18n -- grab these out of resources.
125 // TODO: i18n -- grab these out of resources.
499 * Figure out a reasonable flex time for cases where none is provided (old api calls).
872 // Copy and send out. Necessary for thread-safety although it's parceled.
1068 // Clean out all data structures.
1652 // Only write these if they are out of date.
1656 // Just always write these... they are likely out of date.
1904 // Otherwise clear out this default list since we will populate it later with
2003 XmlSerializer out = new FastXmlSerializer();
2004 out
2416 writePendingOperationLocked(PendingOperation pop, XmlSerializer out) argument
2495 extrasToXml(XmlSerializer out, Bundle extras) argument
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioPeakingFilter.h31 // when they are out of supported range.
102 // out Output buffer.
104 void process(const audio_sample_t in[], audio_sample_t out[], argument
105 int frameCount) { mBiquad.process(in, out, frameCount); }
/frameworks/av/media/libstagefright/
H A DMediaBufferGroup.cpp58 status_t MediaBufferGroup::acquire_buffer(MediaBuffer **out) { argument
68 *out = buffer;
/frameworks/av/media/libstagefright/chromium_http/
H A DDataUriSource.cpp47 ssize_t DataUriSource::readAt(off64_t offset, void *out, size_t size) { argument
62 memcpy(out, dataBuf + offset, bytesToCopy);
/frameworks/base/core/java/android/app/
H A DIWallpaperManager.aidl42 out Bundle outParams);
/frameworks/base/core/java/android/os/
H A DFileUtils.java188 FileOutputStream out = new FileOutputStream(destFile);
193 out.write(buffer, 0, bytesRead);
196 out.flush();
198 out.getFD().sync();
201 out.close();
289 FileWriter out = new FileWriter(filename);
291 out.write(string);
293 out.close();
H A DRemoteCallback.java91 public void writeToParcel(Parcel out, int flags) { argument
92 out.writeStrongBinder(mTarget.asBinder());
H A DResultReceiver.java106 public void writeToParcel(Parcel out, int flags) { argument
111 out.writeStrongBinder(mReceiver.asBinder());
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DStringPart.java121 * @param out the OutputStream to write to
125 protected void sendData(OutputStream out) throws IOException { argument
127 out.write(getContent());
/frameworks/base/core/tests/coretests/src/com/android/internal/net/
H A DNetworkStatsFactoryTest.java135 OutputStream out = null;
138 out = new FileOutputStream(file);
139 Streams.copy(in, out);
142 IoUtils.closeQuietly(out);
148 FileWriter out = null;
150 out = new FileWriter(file);
151 out.write(Long.toString(value));
153 IoUtils.closeQuietly(out);
/frameworks/base/location/java/com/android/internal/location/
H A DILocationProvider.aidl41 int getStatus(out Bundle extras);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLog.java40 System.out.print(s);
69 System.out.println(msg);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiApConfigStore.java176 DataOutputStream out = null;
178 out = new DataOutputStream(new BufferedOutputStream(
181 out.writeInt(AP_CONFIG_FILE_VERSION);
182 out.writeUTF(config.SSID);
184 out.writeInt(authType);
186 out.writeUTF(config.preSharedKey);
191 if (out != null) {
193 out.close();
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp75 static const void* printReturnCommand(TextOutput& out, const void* _cmd);
76 static const void* printCommand(TextOutput& out, const void* _cmd);
138 static const void* printBinderTransactionData(TextOutput& out, const void* data) argument
144 out << "target.desc=" << btd->target.handle;
146 out << "target.ptr=" << btd->target.ptr;
148 out << " (cookie " << btd->cookie << ")" << endl
157 static const void* printReturnCommand(TextOutput& out, const void* _cmd) argument
164 out << "BR_ERROR: " << (void*)(*cmd++) << endl;
167 out << "Unknown reply: " << code << endl;
170 out << kReturnString
218 printCommand(TextOutput& out, const void* _cmd) argument
[all...]
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A Dthreshold.fs80 uchar4 out;
94 out.xyz = convert_uchar3(clamp(blurredPixel, 0.f, 255.f));
95 out.w = 0xff;
96 return out;
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A Dthreshold.fs80 uchar4 out;
94 out.xyz = convert_uchar3(clamp(blurredPixel, 0.f, 255.f));
95 out.w = 0xff;
96 return out;

Completed in 8243 milliseconds

1234567891011>>