Searched refs:out (Results 226 - 250 of 484) sorted by relevance

1234567891011>>

/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java224 // Parse out 'network=' decls so we can ignore duplicates
417 DataOutputStream out = new DataOutputStream(bufstream);
420 out.writeInt(FULL_BACKUP_VERSION);
423 out.writeInt(systemSettingsData.length);
424 out.write(systemSettingsData);
426 out.writeInt(secureSettingsData.length);
427 out.write(secureSettingsData);
429 out.writeInt(globalSettingsData.length);
430 out.write(globalSettingsData);
432 out
907 writeInt(byte[] out, int pos, int value) argument
915 writeBytes(byte[] out, int pos, byte[] value) argument
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_comp.cpp191 uint8 *out, int blkwidth, int blkheight)
216 prev_pix = (pix4 << 24) & 0xFF000000; /* mask out byte belong to previous word */
218 *((uint32*)out) = result; /* write 4 bytes */
219 out += 4;
223 out += out_offset;
236 prev_pix = (pix4 << 16) & 0xFFFF0000; /* mask out byte belong to previous word */
238 *((uint32*)out) = result; /* write 4 bytes */
239 out += 4;
243 out += out_offset;
255 prev_pix = (pix4 << 8) & 0xFFFFFF00; /* mask out byt
190 eCreateAlign(uint8 *ref, int picpitch, int y_pos, uint8 *out, int blkwidth, int blkheight) argument
268 eHorzInterp1MC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dx) argument
558 eHorzInterp2MC(int *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dx) argument
717 eHorzInterp3MC(uint8 *in, int inpitch, int *out, int outpitch, int blkwidth, int blkheight) argument
781 eVertInterp1MC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dy) argument
1083 eVertInterp2MC(uint8 *in, int inpitch, int *out, int outpitch, int blkwidth, int blkheight) argument
1148 eVertInterp3MC(int *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dy) argument
1306 eDiagonalInterpMC(uint8 *in1, uint8 *in2, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight) argument
1649 eFullPelMC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight) argument
1838 uint8 *ref, *out; local
1931 uint8 *ref, *out; local
1981 uint8 *ref, *out; local
2024 int32 *out; local
[all...]
H A Davcenc_lib.h430 void eFullPelMC(uint8 *in, int inwidth, uint8 *out, int outpitch,
433 void eHorzInterp1MC(uint8 *in, int inpitch, uint8 *out, int outpitch,
436 void eHorzInterp2MC(int *in, int inpitch, uint8 *out, int outpitch,
439 void eHorzInterp3MC(uint8 *in, int inpitch, int *out, int outpitch,
442 void eVertInterp1MC(uint8 *in, int inpitch, uint8 *out, int outpitch,
445 void eVertInterp2MC(uint8 *in, int inpitch, int *out, int outpitch,
448 void eVertInterp3MC(int *in, int inpitch, uint8 *out, int outpitch,
452 uint8 *out, int outpitch,
500 The goal is to find the best MB partition for inter and find out if intra search is needed for
/frameworks/base/telephony/java/android/telephony/
H A DSignalStrength.java279 public void writeToParcel(Parcel out, int flags) { argument
280 out.writeInt(mGsmSignalStrength);
281 out.writeInt(mGsmBitErrorRate);
282 out.writeInt(mCdmaDbm);
283 out.writeInt(mCdmaEcio);
284 out.writeInt(mEvdoDbm);
285 out.writeInt(mEvdoEcio);
286 out.writeInt(mEvdoSnr);
287 out.writeInt(mLteSignalStrength);
288 out
[all...]
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DRecurrenceProcessorTest.java38 String[] out = new String[dates.length];
42 out[i] = time.format2445();
45 return out;
48 private static void printLists(String[] expected, String[] out) { argument
49 Log.i(TAG, " expected out");
51 for (i = 0; i < expected.length && i < out.length; i++) {
53 + " " + out[i]);
58 for (; i < out.length; i++) {
59 Log.i(TAG, " [" + i + "] " + out[i]);
109 long[] out
[all...]
H A DRRuleTest.java46 String[] out = new String[dates.length];
51 out[i] = time.format2445().substring(0, 8); // Just YYMMDD
53 out[i] = time.format2445().substring(0, 15); // YYMMDDThhmmss
57 return out;
118 long[] out = rp.expand(dtstart, recur, rangeStart.toMillis(false /* use isDst */),
126 String[] actual = getFormattedDates(out, outCal, truncate);
/frameworks/base/core/java/android/gesture/
H A DGesture.java254 void serialize(DataOutputStream out) throws IOException { argument
259 out.writeLong(mGestureID);
261 out.writeInt(count);
264 strokes.get(i).serialize(out);
311 public void writeToParcel(Parcel out, int flags) { argument
312 out.writeLong(mGestureID);
330 out.writeByteArray(byteStream.toByteArray());
H A DGestureStroke.java201 void serialize(DataOutputStream out) throws IOException { argument
207 out.writeInt(count / 2);
211 out.writeFloat(pts[i]);
213 out.writeFloat(pts[i + 1]);
215 out.writeLong(times[i / 2]);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLoadTestsAutoTest.java165 FileOutputStream out = new FileOutputStream(LOAD_TEST_RESULT, true);
166 PrintStream ps = new PrintStream(out);
210 out.flush();
211 out.close();
280 OutputStream out = new FileOutputStream(
287 out.write(buf, 0, len);
289 out.close();
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp70 uint8_t *out = buffer->data(); local
89 *out++ = accum;
367 sp<ABuffer> out = new ABuffer(buffer->size()); local
368 out->setRange(0, 0);
412 memcpy(out->data() + out->size(), &ptr[offset], payloadLength);
413 out->setRange(0, out->size() + payloadLength);
431 return out;
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DFileRotatorTest.java188 public void write(OutputStream out) throws IOException {
189 new DataOutputStream(out).writeUTF("bar");
372 final OutputStream out = new FileOutputStream(new File(mBasePath, name));
373 out.close();
378 final DataOutputStream out = new DataOutputStream(
380 out.writeUTF(value);
381 out.close();
386 public void write(OutputStream out) throws IOException {
387 new DataOutputStream(out).writeUTF(value);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp335 FILE *out = fdopen(dup(fd), "w"); local
337 fprintf(out, " NuPlayer\n");
338 fprintf(out, " numFramesTotal(%lld), numFramesDropped(%lld), "
345 fclose(out);
346 out = NULL;
/frameworks/av/media/libstagefright/
H A DMPEG2TSWriter.cpp193 sp<ABuffer> out = new ABuffer(1024); local
194 out->setRange(0, 0);
212 CHECK_LE(out->size() + 4 + length, out->capacity());
213 memcpy(out->data() + out->size(), "\x00\x00\x00\x01", 4);
214 memcpy(out->data() + out->size() + 4, ptr, length);
215 out->setRange(0, out
[all...]
H A DJPEGSource.cpp111 MediaBuffer **out, const ReadOptions *options) {
112 *out = NULL;
136 *out = buffer;
110 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/services/java/com/android/server/updates/
H A DConfigUpdateInstallReceiver.java227 FileOutputStream out = null;
242 out = new FileOutputStream(tmp);
243 out.write(content.getBytes());
245 out.getFD().sync();
254 IoUtils.closeQuietly(out);
/frameworks/compile/linkloader/
H A Dmain.cpp152 out().flush();
159 out() << "relocate finished!\n";
160 out().flush();
165 out() << "main address: " << main_addr << "\n";
166 out().flush();
/frameworks/compile/slang/
H A Dslang_rs_reflection.cpp421 C.out() << ((Val.getInt().getSExtValue() == 0) ? "false" : "true")
434 C.out() << RSReflectionBase::genInitValue(Val);
435 C.out() << ";" << std::endl;
718 C.out() << std::endl;
731 C.out() << ", ain";
733 C.out() << ", null";
736 C.out() << ", aout";
738 C.out() << ", null";
741 C.out() << ", " << FieldPackerName;
743 C.out() << ", nul
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DDummyAudioSource.cpp119 MediaBuffer **out, const MediaSource::ReadOptions *options) {
137 *out = NULL;
158 *out = buffer;
118 read( MediaBuffer **out, const MediaSource::ReadOptions *options) argument
/frameworks/base/core/java/com/android/internal/app/
H A DHeavyWeightSwitcherActivity.java88 TypedValue out = new TypedValue();
89 getTheme().resolveAttribute(android.R.attr.alertDialogIcon, out, true);
91 out.resourceId);
/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProvider.java103 OutputStream out = getContext().openFileOutput(DATA_FILE, Context.MODE_PRIVATE);
104 out.write(TEST_BLOB);
105 out.close();
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DHurlStack.java158 DataOutputStream out = new DataOutputStream(connection.getOutputStream());
159 out.write(postBody);
160 out.close();
/frameworks/base/keystore/java/android/security/
H A DKeyStore.java266 OutputStream out = socket.getOutputStream();
267 out.write(code);
269 out.write(parameter.length >> 8);
270 out.write(parameter.length);
271 out.write(parameter);
273 out.flush();
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestRunner.java163 System.out.print(pretty);
167 System.out.println("INSTRUMENTATION_STATUS: " + key + "="
171 System.out.println("INSTRUMENTATION_STATUS_CODE: " + resultCode);
186 System.out.println(pretty);
190 System.out.println("INSTRUMENTATION_RESULT: " + key + "="
194 System.out.println("INSTRUMENTATION_CODE: " + resultCode);
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.h96 virtual status_t invoke(const android::Parcel& in, android::Parcel *out) { argument
97 return mPlayer->invoke(in, out);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dsad_inline.h348 register int32 out; local
357 : "=&r"(out),
362 return out;
367 register int32 out; local
381 : "=&r"(out),
392 register int32 out; local
405 : "=&r"(out),
411 return (out);

Completed in 1929 milliseconds

1234567891011>>