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

1234567891011>>

/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.cpp74 static const void* printReturnCommand(TextOutput& out, const void* _cmd);
75 static const void* printCommand(TextOutput& out, const void* _cmd);
137 static const void* printBinderTransactionData(TextOutput& out, const void* data) argument
143 out << "target.desc=" << btd->target.handle;
145 out << "target.ptr=" << btd->target.ptr;
147 out << " (cookie " << btd->cookie << ")" << endl
156 static const void* printReturnCommand(TextOutput& out, const void* _cmd) argument
163 out << "BR_ERROR: " << (void*)(*cmd++) << endl;
166 out << "Unknown reply: " << code << endl;
169 out << kReturnString
217 printCommand(TextOutput& out, const void* _cmd) argument
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DM3UParser.cpp90 static bool MakeURL(const char *baseURL, const char *url, AString *out) { argument
91 out->clear();
102 out->setTo(url);
104 ALOGV("base:'%s', url:'%s' => '%s'", baseURL, url, out->c_str());
116 out->setTo(baseURL, pathStart - baseURL);
118 out->setTo(baseURL);
121 out->append(url);
127 out->setTo(baseURL);
128 out->append(url);
133 out
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.h60 Int AppVCA1_dct(Int block[], Int out[ ], approxDCT *function);
61 Int AppVCA2_dct(Int block[], Int out[ ], approxDCT *function);
62 Int AppVCA3_dct(Int block[], Int out[ ], approxDCT *function);
63 Int AppVCA4_dct(Int block[], Int out[ ], approxDCT *function);
64 Int AppVCA5_dct(Int block[], Int out[ ], approxDCT *function);
/frameworks/av/media/libstagefright/rtsp/
H A DAPacketSource.cpp79 uint8_t *out = buffer->data(); local
98 *out++ = accum;
174 uint8_t *out = csd->data(); local
176 *out++ = 0x01; // configurationVersion
178 memcpy(out, profileLevelID->data(), 3);
179 out += 3;
181 *out++ = 0x42; // Baseline profile
182 *out++ = 0xE0; // Common subset for all profiles
183 *out++ = 0x0A; // Level 1
186 *out
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_UsbRequest.cpp81 jbyteArray buffer, jint length, jboolean out)
94 if (out) {
119 jbyteArray buffer, jint length, jboolean out)
127 if (buffer && length && request->buffer && !out) {
138 jobject buffer, jint length, jboolean out)
80 android_hardware_UsbRequest_queue_array(JNIEnv *env, jobject thiz, jbyteArray buffer, jint length, jboolean out) argument
118 android_hardware_UsbRequest_dequeue_array(JNIEnv *env, jobject thiz, jbyteArray buffer, jint length, jboolean out) argument
137 android_hardware_UsbRequest_queue_direct(JNIEnv *env, jobject thiz, jobject buffer, jint length, jboolean out) argument
/frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
H A DHugeAgent.java128 // out of the buffering stream object and send it off.
190 * Write out the new state file: the version number, followed by the
195 DataOutputStream out = new DataOutputStream(outstream);
197 out.writeInt(AGENT_VERSION);
198 out.writeInt(mFilling);
199 out.writeBoolean(mAddMayo);
200 out.writeBoolean(mAddTomato);
207 * be running while we change its data out from under it. That, in
208 * turn, means that there is no need to send out any sort of notification
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTextureViewActivity.java58 BufferedOutputStream out = null;
60 File dump = new File(Environment.getExternalStorageDirectory(), "out.png");
61 out = new BufferedOutputStream(new FileOutputStream(dump));
62 b.compress(Bitmap.CompressFormat.PNG, 100, out);
66 if (out != null) try {
67 out.close();
/frameworks/base/tools/aapt/
H A DAaptAssets.h62 * This structure contains a specific variation of a single file out
81 static bool getMccName(const char* name, ResTable_config* out = NULL);
82 static bool getMncName(const char* name, ResTable_config* out = NULL);
83 static bool getLocaleName(const char* name, ResTable_config* out = NULL);
84 static bool getScreenLayoutSizeName(const char* name, ResTable_config* out = NULL);
85 static bool getScreenLayoutLongName(const char* name, ResTable_config* out = NULL);
86 static bool getOrientationName(const char* name, ResTable_config* out = NULL);
87 static bool getUiModeTypeName(const char* name, ResTable_config* out = NULL);
88 static bool getUiModeNightName(const char* name, ResTable_config* out = NULL);
89 static bool getDensityName(const char* name, ResTable_config* out
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java134 public void writeToParcel(Parcel out, int flags) { argument
135 out.writeLong(bucketDuration);
136 writeLongArray(out, bucketStart, bucketCount);
137 writeLongArray(out, activeTime, bucketCount);
138 writeLongArray(out, rxBytes, bucketCount);
139 writeLongArray(out, rxPackets, bucketCount);
140 writeLongArray(out, txBytes, bucketCount);
141 writeLongArray(out, txPackets, bucketCount);
142 writeLongArray(out, operations, bucketCount);
143 out
188 writeToStream(DataOutputStream out) argument
668 writeVarLong(DataOutputStream out, long value) argument
690 writeVarLongArray(DataOutputStream out, long[] values, int size) argument
721 writeLongArray(Parcel out, long[] values, int size) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DDropBoxManagerService.java322 StringBuilder out = new StringBuilder();
331 out.append("Unknown argument: ").append(args[i]).append("\n");
337 out.append("Drop box contents: ").append(mAllFiles.contents.size()).append(" entries\n");
340 out.append("Searching for:");
341 for (String a : searchArgs) out.append(" ").append(a);
342 out.append("\n");
347 out.append("\n");
359 if (doPrint) out.append("========================================\n");
360 out.append(date).append(" ").append(entry.tag == null ? "(no tag)" : entry.tag);
362 out
[all...]
H A DPackageManagerBackupAgent.java183 // metadata again. In either case, take it out of mExisting so that
316 private static void writeSignatureArray(DataOutputStream out, Signature[] sigs) argument
319 out.writeInt(sigs.length);
324 out.writeInt(flat.length);
325 out.write(flat);
362 // Util: parse out an existing state file into a usable structure
404 // Util: write out our new backup state file
407 DataOutputStream out = new DataOutputStream(outstream);
411 out.writeUTF(GLOBAL_METADATA_KEY);
412 out
[all...]
H A DIntentResolverOld.java96 boolean dumpMap(PrintWriter out, String titlePrefix, String title, argument
113 out.print(titlePrefix); out.println(title);
117 out.print(eprefix); out.print(e.getKey()); out.println(":");
121 dumpFilter(out, fprefix, filter);
124 printer = new PrintWriterPrinter(out);
133 public boolean dump(PrintWriter out, String title, String prefix, String packageName, argument
138 if (dumpMap(out, curPrefi
355 dumpFilter(PrintWriter out, String prefix, F filter) argument
[all...]
/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java86 // TODO: i18n -- grab these out of resources.
112 // TODO: i18n -- grab these out of resources.
958 // Clean out all data structures.
1444 // Only write these if they are out of date.
1448 // Just always write these... they are likely out of date.
1668 // Otherwise clear out this default list since we will populate it later with
1751 XmlSerializer out = new FastXmlSerializer();
1752 out.setOutput(fos, "utf-8");
1753 out.startDocument(null, true);
1754 out
2096 writePendingOperationLocked(PendingOperation op, Parcel out) argument
[all...]
H A DSyncAdaptersCache.java80 public void writeAsXml(SyncAdapterType item, XmlSerializer out) throws IOException { argument
81 out.attribute(null, "authority", item.authority);
82 out.attribute(null, "accountType", item.accountType);
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java240 public void writeToParcel(Parcel out, int flags) { argument
241 out.writeString(mTag);
242 out.writeLong(mTimeMillis);
244 out.writeInt(mFlags & ~HAS_BYTE_ARRAY); // Clear bit just to be safe
245 mFileDescriptor.writeToParcel(out, flags);
247 out.writeInt(mFlags | HAS_BYTE_ARRAY);
248 out.writeByteArray(mData);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DModelInterpreter.java147 OutputStream out; field in class:ModelInterpreter
167 ModelInterpreter (InputStream in, OutputStream out) argument
170 this.out = out;
214 out = s.getOutputStream();
234 //System.out.println("MI<< " + line);
656 //System.out.println("MI>> " + s);
658 out.write(bytes);
659 out.write('\r');
673 //System.out
[all...]
/frameworks/wilhelm/tools/permute/
H A Dpermute.c141 goto out;
156 goto out;
169 goto out;
184 goto out;
198 goto out;
206 goto out;
248 goto out;
265 goto out;
299 out:
/frameworks/av/libvideoeditor/lvpp/
H A DDummyVideoSource.cpp119 MediaBuffer **out,
137 *out = NULL;
167 *out = buffer;
118 read( MediaBuffer **out, const MediaSource::ReadOptions *options) argument
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DCookiesTest.java56 ByteArrayOutputStream out = new ByteArrayOutputStream();
58 StreamHandler handler = new StreamHandler(out, new SimpleFormatter());
65 String log = out.toString("UTF-8");
/frameworks/base/core/tests/coretests/src/android/os/
H A DFileObserverTest.java80 FileOutputStream out = new FileOutputStream(mTestFile);
82 out.write(0x20);
95 out.close();
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DExpatPerformanceTest.java46 ByteArrayOutputStream out = new ByteArrayOutputStream();
50 out.write(buffer, 0, length);
52 mXmlBytes = out.toByteArray();
/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);
51 System.out.println("Special-casing function " + fname);
96 new PrintStream(new FileOutputStream("out/" + gl11Filename));
98 new PrintStream(new FileOutputStream("out/" + gl11cFilename));
/frameworks/base/core/java/android/view/
H A DWindowManager.java373 * Window type: panel that slides out from the status bar
414 * Window type: panel that slides out from over the status bar
442 * Window type: panel that slides out from under the status bar
769 /** Window flag: Enable touches to slide out of a window into neighboring
774 * Touches can slide out of the window but they cannot necessarily slide
1339 public void writeToParcel(Parcel out, int parcelableFlags) { argument
1340 out.writeInt(width);
1341 out.writeInt(height);
1342 out.writeInt(x);
1343 out
[all...]

Completed in 8674 milliseconds

1234567891011>>