Searched refs:out (Results 276 - 300 of 654) sorted by relevance

<<11121314151617181920>>

/frameworks/native/opengl/tools/glgen/src/
H A DGenerateEGL.java26 private static void copy(String filename, PrintStream out) throws IOException { argument
30 out.println(s);
51 System.out.println("Special-casing function " + fname);
93 new PrintStream(new FileOutputStream("out/" + egljFilename));
95 new PrintStream(new FileOutputStream("out/" + eglcFilename));
H A DGenerateGLES.java26 static void copy(String filename, PrintStream out) throws IOException { argument
30 out.println(s);
50 System.out.println("Special-casing function " + fname);
96 new PrintStream(new FileOutputStream("out/" + gl11Filename));
98 new PrintStream(new FileOutputStream("out/" + gl11cFilename));
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequest.java135 DataOutputStream out = op.openDataOutputStream();
136 out.write(body);
137 out.close();
/frameworks/base/services/backup/java/com/android/server/backup/
H A DPackageManagerBackupAgent.java285 // metadata again. In either case, take it out of mExisting so that
443 private static void writeSignatureHashArray(DataOutputStream out, ArrayList<byte[]> hashes) argument
446 out.writeInt(hashes.size());
450 out.writeInt(buffer.length);
451 out.write(buffer);
507 // Util: parse out an existing state file into a usable structure
593 // Util: write out our new backup state file
598 DataOutputStream out = new DataOutputStream(outbuf);
603 out.writeUTF(STATE_FILE_HEADER);
604 out
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DTaskRecord.java805 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException { argument
808 out.attribute(null, ATTR_TASKID, String.valueOf(taskId));
810 out.attribute(null, ATTR_REALACTIVITY, realActivity.flattenToShortString());
813 out.attribute(null, ATTR_ORIGACTIVITY, origActivity.flattenToShortString());
820 out.attribute(null, ATTR_AFFINITY, affinity);
822 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
825 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
827 out.attribute(null, ATTR_ROOTHASRESET, String.valueOf(rootWasReset));
828 out.attribute(null, ATTR_AUTOREMOVERECENTS, String.valueOf(autoRemoveRecents));
829 out
[all...]
H A DCompatModePackages.java362 XmlSerializer out = new FastXmlSerializer();
363 out.setOutput(fos, "utf-8");
364 out.startDocument(null, true);
365 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
366 out.startTag(null, "compat-packages");
395 out.startTag(null, "pkg");
396 out.attribute(null, "name", pkg);
397 out.attribute(null, "mode", Integer.toString(mode));
398 out.endTag(null, "pkg");
401 out
[all...]
/frameworks/av/media/libstagefright/
H A Davc_utils.cpp349 uint8_t *out = csd->data(); local
351 *out++ = 0x01; // configurationVersion
352 memcpy(out, seqParamSet->data() + 1, 3); // profile/level...
354 uint8_t profile = out[0];
355 uint8_t level = out[2];
357 out += 3;
358 *out++ = (0x3f << 2) | 1; // lengthSize == 2 bytes
359 *out++ = 0xe0 | 1;
361 *out++ = seqParamSet->size() >> 8;
362 *out
[all...]
/frameworks/base/core/java/android/text/
H A DPackedObjectVector.java179 System.out.print(val + " ");
181 System.out.print("(" + val + ") ");
184 System.out.print(" << \n");
187 System.out.print("-----\n\n");
/frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
H A DMultipartTest.java37 BufferedWriter out = new BufferedWriter(outFile);
39 out.write(filebuffer.toString());
40 out.flush();
42 out.close();
113 // System.out.print(output.toString());
116 // System.out.print(os.toString());
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfDocument.java165 * @param out The output stream. Cannot be null.
169 public void writeTo(OutputStream out) throws IOException { argument
172 if (out == null) {
173 throw new IllegalArgumentException("out cannot be null!");
175 nativeWriteTo(mNativeDocument, out, mChunk);
244 private native void nativeWriteTo(long nativeDocument, OutputStream out, byte[] chunk); argument
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DObbBackupService.java70 final BackupDataOutput out = new BackupDataOutput(outFd);
77 rootPath, filePath, out);
87 FileOutputStream out = new FileOutputStream(outFd);
89 out.write(buf);
/frameworks/rs/cpu_ref/linkloader/utils/
H A Draw_ostream.cpp24 llvm::raw_ostream &out() { function
/frameworks/rs/
H A Dupdate_rs_prebuilts.sh43 ANDROID_HOST_OUT=$MY_ANDROID_DIR/out/host/$SHORT_OSNAME-x86/
127 sys_lib_dir=$MY_ANDROID_DIR/out/target/product/${SYS_NAMES[$i]}/system/lib
128 obj_lib_dir=$MY_ANDROID_DIR/out/target/product/${SYS_NAMES[$i]}/obj/lib
141 cp $MY_ANDROID_DIR/out/target/common/obj/JAVA_LIBRARIES/android-support-v8-renderscript_intermediates/javalib.jar renderscript/lib
/frameworks/testing/support/tests/src/android/support/test/runner/
H A DAndroidJUnitRunnerTest.java141 BufferedWriter out = new BufferedWriter(new FileWriter(file));
142 out.write("ClassName3\n");
143 out.write("ClassName4#method2\n");
144 out.close();
/frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
H A DEventsCommand.java31 * Prints out accessibility events until process is stopped.
43 return "prints out accessibility events until terminated";
60 System.out.println(String.format("%s %s",
/frameworks/av/media/img_utils/src/
H A DTiffIfd.cpp101 status_t TiffIfd::writeData(uint32_t offset, /*out*/EndianOutput* out) const {
115 BAIL_ON_FAIL(out->write(&header, 0, 1), ret);
119 BAIL_ON_FAIL(mEntries[i]->writeTagInfo(valueOffset, out), ret);
125 BAIL_ON_FAIL(out->write(&footer, 0, 1), ret);
127 assert(out->getCurrentOffset() == offset + calculateIfdSize(size));
130 ZERO_TILL_WORD(out, calculateIfdSize(size), ret);
134 size_t last = out->getCurrentOffset();
137 BAIL_ON_FAIL(mEntries[i]->writeData(out->getCurrentOffset(), out), re
[all...]
H A DEndianUtils.cpp22 EndianOutput::EndianOutput(Output* out, Endianness end) argument
23 : mOffset(0), mOutput(out), mEndian(end) {}
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dblock_switch.c303 Word32 out; local
310 out = accu3 - accu2;
313 states1 = out;
315 tempFiltered = extract_h(out);
342 Word32 out; local
347 out = accu3 - accu2;
350 states[1] = out;
352 return round16(out);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct.h173 //void Block1x1DCTzmv (Short *out,UChar *prev,UChar *cur,UChar *rec,Int lx,Int chroma);
174 void Block1x1DCTwSub(Short *out, UChar *cur, UChar *prev, Int pitch_chroma);
175 void Block1x1DCTIntra(Short *out, UChar *cur, UChar *dummy1, Int pitch_chroma);
177 Void BlockDCT_AANwSub(Short *out, UChar *cur, UChar *prev, Int pitch_chroma);
178 Void Block4x4DCT_AANwSub(Short *out, UChar *cur, UChar *prev, Int pitch_chroma);
179 Void Block2x2DCT_AANwSub(Short *out, UChar *cur, UChar *prev, Int pitch_chroma);
180 //Void BlockDCT_AANzmv(Short *out,UChar *prev,UChar *cur,UChar *rec,Int ColTh,Int lx,Int chroma);
181 //Void Block4x4DCT_AANzmv(Short *out,UChar *prev,UChar *cur,UChar *rec,Int ColTh,Int lx,Int chroma);
182 //Void Block2x2DCT_AANzmv(Short *out,UChar *prev,UChar *cur,UChar *rec,Int ColTh,Int lx,Int chroma);
183 Void BlockDCT_AANIntra(Short *out, UCha
[all...]
/frameworks/base/core/java/android/os/
H A DFileUtils.java187 FileOutputStream out = new FileOutputStream(destFile);
192 out.write(buffer, 0, bytesRead);
195 out.flush();
197 out.getFD().sync();
200 out.close();
288 FileWriter out = new FileWriter(filename);
290 out.write(string);
292 out.close();
/frameworks/base/core/java/com/android/internal/os/
H A DBaseCommand.java38 onShowUsage(System.out);
83 public abstract void onShowUsage(PrintStream out); argument
/frameworks/base/telephony/java/android/telephony/
H A DVoLteServiceState.java127 public void writeToParcel(Parcel out, int flags) { argument
128 out.writeInt(mSrvccState);
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java430 void writeToXml(XmlSerializer out) argument
432 out.startTag(null, TAG_POLICIES);
433 info.writePoliciesToXml(out);
434 out.endTag(null, TAG_POLICIES);
436 out.startTag(null, TAG_PASSWORD_QUALITY);
437 out.attribute(null, ATTR_VALUE, Integer.toString(passwordQuality));
438 out.endTag(null, TAG_PASSWORD_QUALITY);
440 out.startTag(null, TAG_MIN_PASSWORD_LENGTH);
441 out.attribute(null, ATTR_VALUE, Integer.toString(minimumPasswordLength));
442 out
585 writePackageListToXml(XmlSerializer out, String outerTag, List<String> packageList) argument
[all...]
/frameworks/base/cmds/ime/src/com/android/commands/ime/
H A DIme.java125 Printer pr = new PrintStreamPrinter(System.out);
129 System.out.println(imi.getId());
131 System.out.println(imi.getId() + ":");
149 System.out.println("Input method " + id + ": "
152 System.out.println("Input method " + id + ": "
175 System.out.println("Input method " + id + " selected");
/frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
H A DRequestSync.java67 System.out.printf("Requesting sync for: \n");
69 System.out.printf(" Account: %s (%s)\n", account.name, account.type);
71 System.out.printf(" Account: all\n");
74 System.out.printf(" Authority: %s\n", mAuthority != null ? mAuthority : "All");
77 System.out.printf(" Extras:\n");
79 System.out.printf(" %s: %s\n", key, mExtras.get(key));

Completed in 713 milliseconds

<<11121314151617181920>>