Searched refs:out (Results 401 - 425 of 484) sorted by relevance

<<11121314151617181920

/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java420 public void writePoliciesToXml(XmlSerializer out) argument
422 out.attribute(null, "flags", Integer.toString(mUsesPolicies));
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java291 // Now figure out which well-defined tree the file is placed in, working from
430 // Parse out the semantic domains into the correct physical location
446 // Now that we've figured out where the data goes, send it on its way
453 // anyway, so just use the default "copy the data out" implementation
502 // we'll time out anyway, so we're safe
529 // we'll time out anyway, so we're safe
554 FileOutputStream out = new FileOutputStream(data.getFileDescriptor());
556 out.write(buf);
565 // we'll time out anyway, so we're safe
584 // we'll time out anywa
[all...]
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java3935 final XmlSerializer out = new FastXmlSerializer();
3936 out.setOutput(fos, "utf-8");
3937 out.startDocument(null, true);
3938 out.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
3939 out.startTag(null, NODE_SUBTYPES);
3945 out.startTag(null, NODE_IMI);
3946 out.attribute(null, ATTR_ID, imiId);
3951 out.startTag(null, NODE_SUBTYPE);
3952 out.attribute(null, ATTR_ICON, String.valueOf(subtype.getIconResId()));
3953 out
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java422 * Zero out the buffer from last time
452 System.out.print((char)data);
456 System.out.println();
504 // Bomb out if stream closes prematurely
573 // Bomb out if stream closes prematurely
687 // Write out the data
/frameworks/base/tools/aapt/
H A DPackage.cpp453 ssize_t processJarFile(ZipFile* jar, ZipFile* out) argument
470 out->add(data, size, storageName, compressionMethod, NULL);
/frameworks/base/tools/aidl/
H A Daidl_language_l.l87 out { SET_BUFFER(OUT); return OUT; }
/frameworks/base/media/jni/
H A Dandroid_media_Utils.cpp278 sp<AMessage> *out) {
398 *out = msg;
276 ConvertKeyValueArraysToMessage( JNIEnv *env, jobjectArray keys, jobjectArray values, sp<AMessage> *out) argument
/frameworks/base/core/java/android/os/
H A DBatteryStats.java728 public abstract boolean getNextHistoryLocked(HistoryItem out); argument
734 public abstract boolean getNextOldHistoryLocked(HistoryItem out); argument
879 new String[] {"in", "out", "emergency", "off"}),
1031 private final static void formatTimeRaw(StringBuilder out, long seconds) { argument
1034 out.append(days);
1035 out.append("d ");
1041 out.append(hours);
1042 out.append("h ");
1048 out.append(mins);
1049 out
[all...]
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp133 FILE *out = fopen(filename.string(), "wb"); local
152 out),
161 fclose(out);
162 out = NULL;
854 CHECK_EQ(writeJpegFile("/sdcard/out.jpg",
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp491 MediaBuffer **out, const ReadOptions *options) {
492 *out = NULL;
532 *out = frame;
619 *out = buffer;
490 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp572 AString out; local
585 out.append(", ");
587 out.append(tmp);
599 ALOGV("accessUnit contains nal types %s", out.c_str());
/frameworks/av/media/libstagefright/rtsp/
H A DMyTransmitter.h236 void H(const AString &s, AString *out) { argument
237 out->clear();
253 out->append(&nibble, 1);
261 out->append(&nibble, 1);
/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java134 System.out.println(getForUser(provider, mUser, mTable, mKey));
/frameworks/base/core/java/android/text/
H A DStaticLayout.java32 * is laid out. Use {@link DynamicLayout} for text that may change.
410 v = out(source, here, endPos,
455 v = out(source,
479 v = out(source,
583 private int out(CharSequence text, int start, int end, method in class:StaticLayout
/frameworks/base/core/java/android/util/
H A DTypedValue.java296 System.out.println(
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java238 public void dumpViewHierarchyWithProperties(BufferedWriter out, int level); argument
/frameworks/base/core/java/com/android/internal/os/
H A DRuntimeInit.java311 * Redirect System.out and System.err to the Android log.
314 System.out.close();
315 System.setOut(new AndroidPrintStream(Log.INFO, "System.out"));
/frameworks/compile/slang/
H A DAndroid.mk265 $(call transform-host-clang-td-to-out,opt-parser-defs)
/frameworks/native/include/android/
H A Dconfiguration.h132 void AConfiguration_fromAssetManager(AConfiguration* out, AAssetManager* am);
/frameworks/native/include/ui/
H A DRegion.h137 void dump(String8& out, const char* what, uint32_t flags=0) const;
/frameworks/native/libs/gui/
H A DSurfaceTextureClient.cpp749 ANativeWindowBuffer* out; local
751 status_t err = dequeueBuffer(&out, &fenceFd);
754 sp<GraphicBuffer> backBuffer(GraphicBuffer::getSelf(out));
760 cancelBuffer(out, fenceFd);
774 // figure out if we can copy the frontbuffer back
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.h261 void dump(String8& out, char* scratch, size_t SIZE) const;
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java188 * Filter out the ones for events whose BYxxx rule is for
191 * Returns 0 if the event should not be filtered out
297 // Not allowed, filter it out.
309 // if we got to here, we didn't filter it out
314 * Filters out instances that don't match the BYSETPOS clause of a monthly recurrence rule.
369 continue; // out of range
376 continue; // out of range
728 * @param add Whether or not we should add to out, or remove from out.
729 * @param out th
733 expand(Time dtstart, EventRecurrence r, long rangeStartDateValue, long rangeEndDateValue, boolean add, TreeSet<Long> out) argument
[all...]
/frameworks/rs/driver/
H A DrsdBcc.cpp76 ALOGE("bcc: FAILS to create compiler context (out of memory)");
82 ALOGE("bcc: FAILS to create compiler driver (out of memory)");
197 //ALOGE("usr ptr in %p, out %p", mtls->fep.ptrIn, mtls->fep.ptrOut);
201 p.out = buf;
211 p.out = mtls->fep.ptrOut + (mtls->fep.yStrideOut * p.y) +
239 //ALOGE("usr ptr in %p, out %p", mtls->fep.ptrIn, mtls->fep.ptrOut);
241 p.out = mtls->fep.ptrOut + (mtls->fep.eStrideOut * xStart);
376 p.out = mtls->fep.ptrOut + (mtls->fep.yStrideOut * offset) +
/frameworks/support/renderscript/v8/rs_support/
H A DrsRuntime.h88 Allocation *out,

Completed in 464 milliseconds

<<11121314151617181920