Searched defs:out (Results 426 - 450 of 520) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libstagefright/
H A DOggExtractor.cpp150 // *buffer is NULL'ed out immediately upon entry, and if successful a new buffer is allocated;
259 MediaBuffer **out, const ReadOptions *options) {
260 *out = NULL;
289 *out = packet;
565 status_t MyOpusExtractor::readNextPacket(MediaBuffer **out) { argument
567 // The first sample might not start at time 0; find out where by subtracting
597 status_t err = _readNextPacket(out, /* calcVorbisTimestamp = */false);
605 if ((*out)->meta_data()->findInt32(kKeyValidSamples, &currentPageSamples)) {
609 (*out)->meta_data()->setInt32(kKeyValidSamples, currentPageSamples);
615 (*out)
258 read( MediaBuffer **out, const ReadOptions *options) argument
668 _readNextPacket(MediaBuffer **out, bool calcVorbisTimestamp) argument
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_est.cpp190 uint8 *out; local
197 out = cur - pitch;
200 temp = out[j] - cur[j];
205 out = cur - 1;
206 out -= pitch;
210 temp = *(out += pitch) - *(cur += pitch);
236 /* if turns out to be IDR frame, set video->nal_unit_type to AVC_NALTYPE_IDR */
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp185 // If we do detect out-of-order cues, return NULL.
638 MediaBuffer **out, const ReadOptions *options) {
639 *out = NULL;
679 *out = frame;
784 *out = buffer;
637 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/av/media/libstagefright/omx/
H A DOMXNodeInstance.cpp1454 const void *data, size_t size, T *out) {
1458 *out = *(T*)data;
1453 getInternalOption( const void *data, size_t size, T *out) argument
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h1734 static bool MakeURL(const char *baseURL, const char *url, AString *out) { argument
1735 out->clear();
1744 out->setTo(url);
1749 out->setTo(baseURL);
1751 out->append("/");
1753 out->append(url);
/frameworks/av/services/audioflinger/
H A DEffects.cpp302 int16_t *out = mConfig.outputCfg.buffer.s16; local
304 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java125 public void onShowUsage(PrintStream out) { argument
126 PrintWriter pw = new PrintWriter(out);
532 System.out.println("Starting service: " + intent);
550 System.out.println("Stopping service: " + intent);
595 System.out.println("Stopping: " + packageName);
600 System.out.println("Starting: " + intent);
640 PrintStream out = mWaitOption ? System.out : System.err;
648 out.println(
654 out
[all...]
/frameworks/base/core/java/android/service/notification/
H A DZenModeConfig.java457 public void writeXml(XmlSerializer out) throws IOException { argument
458 out.startTag(null, ZEN_TAG);
459 out.attribute(null, ZEN_ATT_VERSION, Integer.toString(XML_VERSION));
460 out.attribute(null, ZEN_ATT_USER, Integer.toString(user));
462 out.startTag(null, ALLOW_TAG);
463 out.attribute(null, ALLOW_ATT_CALLS, Boolean.toString(allowCalls));
464 out.attribute(null, ALLOW_ATT_REPEAT_CALLERS, Boolean.toString(allowRepeatCallers));
465 out.attribute(null, ALLOW_ATT_MESSAGES, Boolean.toString(allowMessages));
466 out.attribute(null, ALLOW_ATT_REMINDERS, Boolean.toString(allowReminders));
467 out
509 writeRuleXml(ZenRule rule, XmlSerializer out) argument
545 writeConditionXml(Condition c, XmlSerializer out) argument
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java531 protected void dump(String prefix, FileDescriptor fd, PrintWriter out, String[] args) { argument
532 out.print(prefix); out.print("mInitializing="); out.print(mInitializing);
533 out.print(" mDestroyed="); out.println(mDestroyed);
534 out.print(prefix); out.print("mVisible="); out.print(mVisible);
535 out
1280 dump(FileDescriptor fd, PrintWriter out, String[] args) argument
[all...]
/frameworks/base/core/java/android/text/
H A DStaticLayout.java38 * is laid out. Use {@link DynamicLayout} for text that may change.
67 * @param source The text to be laid out, optionally with spans
132 * @param source The text to be laid out, optionally with spans
631 chooseHt = null; // So that out() would not assume it has any contents
819 v = out(source, here, endPos,
857 v = out(source,
870 private int out(CharSequence text, int start, int end, method in class:StaticLayout
/frameworks/base/core/java/android/view/
H A DWindowManager.java444 * Window type: panel that slides out from the status bar
485 * Window type: panel that slides out from over the status bar
513 * Window type: panel that slides out from under the status bar
990 /** Window flag: Enable touches to slide out of a window into neighboring
995 * Touches can slide out of the window but they cannot necessarily slide
1236 * Flag to indicate that this child window should always be laid-out in the parent
1566 * specify that this window will rotate in or out following a rotation.
1572 * specify that this window will fade in or out following a rotation.
1841 public void writeToParcel(Parcel out, int parcelableFlags) { argument
1842 out
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java264 public void dumpViewHierarchyWithProperties(BufferedWriter out, int level); argument
/frameworks/base/core/java/android/widget/
H A DFastScroller.java55 /** Duration of fade-out animation. */
195 /** Whether decorations should be laid out from right to left. */
611 * @param out Rectangle into which measured bounds are placed.
613 private void measurePreview(View v, Rect out) { argument
622 measureFloating(v, margins, out);
624 measureViewToSide(v, mThumbImage, margins, out);
629 * Measures the bounds for a view that should be laid out against the edge
630 * of an adjacent view. If no adjacent view is provided, lays out against
637 * @param out Rectangle into which measured bounds are placed.
639 private void measureViewToSide(View view, View adjacent, Rect margins, Rect out) { argument
689 measureFloating(View preview, Rect margins, Rect out) argument
[all...]
H A DProgressBar.java498 final StateListDrawable out = new StateListDrawable();
501 out.addState(in.getStateSet(i), tileify(in.getStateDrawable(i), clip));
504 return out;
1704 // Subtract out padding for the purposes of the calculations below.
1876 public void writeToParcel(Parcel out, int flags) { argument
1877 super.writeToParcel(out, flags);
1878 out.writeInt(progress);
1879 out.writeInt(secondaryProgress);
H A DToolbar.java2228 public void writeToParcel(Parcel out, int flags) { argument
2229 super.writeToParcel(out, flags);
2230 out.writeInt(expandedMenuItemId);
2231 out.writeInt(isOverflowOpen ? 1 : 0);
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DProcessStats.java460 // Finally prune out any common processes that are no longer in use.
624 private void writeCompactedLongArray(Parcel out, long[] array, int num) { argument
632 out.writeInt((int)val);
636 out.writeInt(top);
637 out.writeInt(bottom);
667 private void writeCommonString(Parcel out, String name) { argument
670 out.writeInt(index);
675 out.writeInt(~index);
676 out.writeString(name);
702 public void writeToParcel(Parcel out, in argument
707 writeToParcel(Parcel out, long now, int flags) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java1368 public void writeToParcel(Parcel out, int flags) { argument
1369 super.writeToParcel(out, flags);
1370 out.writeInt(expandedMenuItemId);
1371 out.writeInt(isOverflowOpen ? 1 : 0);
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp412 std::string out = language; local
414 out = out + "-" + country;
418 out = out + "-" + variant;
421 return out;
574 * buffer goes out of scope the option may be overwritten. It's best
793 // specific situation it is acceptable to *not* relocate and run out of the prebuilts
983 * init.rc anymore, so we print out the boot start event here.
H A Dandroid_os_Debug.cpp680 static void android_os_Debug_getMemInfo(JNIEnv *env, jobject clazz, jlongArray out) argument
685 if (out == NULL) {
686 jniThrowNullPointerException(env, "out == null");
770 int maxNum = env->GetArrayLength(out);
774 jlong* outArray = env->GetLongArrayElements(out, 0);
780 env->ReleaseLongArrayElements(out, outArray, 0);
837 /* pulled out of bionic */
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp97 // Find out how many vertices we need to transform
898 * @param out an ETC1 compressed version of the data.
902 jobject in, jint validPixelMask, jobject out) {
908 BufferHelper outB(env, out);
909 if (inB.checkPointer("in") && outB.checkPointer("out")) {
913 doThrowIAE(env, "out's remaining data < ENCODED_BLOCK_SIZE");
926 * @param out a pointer to a ETC_DECODED_BLOCK_SIZE array of bytes that represent a
931 jobject in, jobject out){
933 BufferHelper outB(env, out);
934 if (inB.checkPointer("in") && outB.checkPointer("out")) {
901 etc1_encodeBlock(JNIEnv *env, jclass clazz, jobject in, jint validPixelMask, jobject out) argument
930 etc1_decodeBlock(JNIEnv *env, jclass clazz, jobject in, jobject out) argument
960 etc1_encodeImage(JNIEnv *env, jclass clazz, jobject in, jint width, jint height, jint pixelSize, jint stride, jobject out) argument
990 etc1_decodeImage(JNIEnv *env, jclass clazz, jobject in, jobject out, jint width, jint height, jint pixelSize, jint stride) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DAppOpsService.java1547 XmlSerializer out = new FastXmlSerializer();
1548 out.setOutput(stream, StandardCharsets.UTF_8.name());
1549 out.startDocument(null, true);
1550 out.startTag(null, "app-ops");
1556 out.startTag(null, "uid");
1557 out.attribute(null, "n", Integer.toString(uidState.uid));
1563 out.startTag(null, "op");
1564 out.attribute(null, "n", Integer.toString(op));
1565 out.attribute(null, "m", Integer.toString(mode));
1566 out
1789 onShellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, String[] args, ResultReceiver resultReceiver) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java644 // This starts out true, since the initial state of an activity
1396 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException { argument
1397 out.attribute(null, ATTR_ID, String.valueOf(createTime));
1398 out.attribute(null, ATTR_LAUNCHEDFROMUID, String.valueOf(launchedFromUid));
1400 out.attribute(null, ATTR_LAUNCHEDFROMPACKAGE, launchedFromPackage);
1403 out.attribute(null, ATTR_RESOLVEDTYPE, resolvedType);
1405 out.attribute(null, ATTR_COMPONENTSPECIFIED, String.valueOf(componentSpecified));
1406 out.attribute(null, ATTR_USERID, String.valueOf(userId));
1409 taskDescription.saveToXml(out);
1412 out
[all...]
H A DTaskRecord.java1131 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException { argument
1134 out.attribute(null, ATTR_TASKID, String.valueOf(taskId));
1136 out.attribute(null, ATTR_REALACTIVITY, realActivity.flattenToShortString());
1138 out.attribute(null, ATTR_REALACTIVITY_SUSPENDED, String.valueOf(realActivitySuspended));
1140 out.attribute(null, ATTR_ORIGACTIVITY, origActivity.flattenToShortString());
1147 out.attribute(null, ATTR_AFFINITY, affinity);
1149 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
1152 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
1154 out.attribute(null, ATTR_ROOTHASRESET, String.valueOf(rootWasReset));
1155 out
[all...]
/frameworks/base/services/core/java/com/android/server/job/
H A DJobSchedulerService.java676 // When coming out of idle, allow thing to start back up.
1665 public void onShellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err, argument
1668 this, in, out, err, args, resultReceiver);
/frameworks/base/services/core/java/com/android/server/notification/
H A DZenModeHelper.java554 public void writeXml(XmlSerializer out, boolean forBackup) throws IOException { argument
561 mConfigs.valueAt(i).writeXml(out);

Completed in 1125 milliseconds

<<11121314151617181920>>