Searched defs:out (Results 76 - 100 of 366) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/os/
H A DRemoteCallback.java91 public void writeToParcel(Parcel out, int flags) { argument
92 out.writeStrongBinder(mTarget.asBinder());
H A DResultReceiver.java113 public void writeToParcel(Parcel out, int flags) { argument
118 out.writeStrongBinder(mReceiver.asBinder());
/frameworks/base/core/java/android/service/notification/
H A DNotificationRankingUpdate.java53 public void writeToParcel(Parcel out, int flags) { argument
54 out.writeStringArray(mKeys);
55 out.writeInt(mFirstAmbientIndex);
56 out.writeStringArray(mInterceptedKeys);
57 out.writeBundle(mVisibilityOverrides);
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DFilePart.java189 * @param out The output stream
194 protected void sendDispositionHeader(OutputStream out) argument
196 LOG.trace("enter sendDispositionHeader(OutputStream out)");
197 super.sendDispositionHeader(out);
200 out.write(FILE_NAME_BYTES);
201 out.write(QUOTE_BYTES);
202 out.write(EncodingUtils.getAsciiBytes(filename));
203 out.write(QUOTE_BYTES);
209 * @param out The output stream.
214 protected void sendData(OutputStream out) throw argument
[all...]
H A DMultipartEntity.java195 public void writeTo(OutputStream out) throws IOException { argument
196 Part.sendParts(out, parts, getMultipartBoundary());
/frameworks/base/core/java/com/android/internal/net/
H A DLegacyVpnInfo.java51 public void writeToParcel(Parcel out, int flags) { argument
52 out.writeString(key);
53 out.writeInt(state);
54 out.writeParcelable(intent, flags);
/frameworks/base/core/java/com/android/internal/os/
H A DBaseCommand.java38 onShowUsage(System.out);
83 public abstract void onShowUsage(PrintStream out); argument
H A DSamplingProfilerIntegration.java180 PrintStream out = new PrintStream(outputStream);
181 generateSnapshotHeader(name, packageInfo, out);
182 if (out.checkError()) {
214 PrintStream out) {
216 out.println("Version: 3");
217 out.println("Process: " + processName);
219 out.println("Package: " + packageInfo.packageName);
220 out.println("Package-Version: " + packageInfo.versionCode);
222 out.println("Build: " + Build.FINGERPRINT);
224 out
213 generateSnapshotHeader(String processName, PackageInfo packageInfo, PrintStream out) argument
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarIcon.java75 public void writeToParcel(Parcel out, int flags) { argument
76 out.writeString(this.iconPackage);
77 out.writeParcelable(this.user, 0);
78 out.writeInt(this.iconId);
79 out.writeInt(this.iconLevel);
80 out.writeInt(this.visible ? 1 : 0);
81 out.writeInt(this.number);
82 out.writeCharSequence(this.contentDescription);
/frameworks/base/core/jni/
H A Dandroid_content_res_Configuration.cpp47 JNIEnv* env, jobject clazz, struct AConfiguration* out) {
48 out->mcc = env->GetIntField(clazz, gConfigurationClassInfo.mcc);
49 out->mnc = env->GetIntField(clazz, gConfigurationClassInfo.mnc);
50 out->screenLayout = env->GetIntField(clazz, gConfigurationClassInfo.screenLayout);
51 out->touchscreen = env->GetIntField(clazz, gConfigurationClassInfo.touchscreen);
52 out->keyboard = env->GetIntField(clazz, gConfigurationClassInfo.keyboard);
53 out->navigation = env->GetIntField(clazz, gConfigurationClassInfo.navigation);
55 out->inputFlags = env->GetIntField(clazz, gConfigurationClassInfo.keyboardHidden);
57 if (out->inputFlags == ACONFIGURATION_KEYSHIDDEN_NO
59 out
46 android_Configuration_getFromJava( JNIEnv* env, jobject clazz, struct AConfiguration* out) argument
[all...]
H A Dandroid_hardware_UsbRequest.cpp81 jbyteArray buffer, jint length, jboolean out)
94 if (out) {
120 jbyteArray buffer, jint length, jboolean out)
128 if (buffer && length && request->buffer && !out) {
139 jobject buffer, jint length, jboolean out)
80 android_hardware_UsbRequest_queue_array(JNIEnv *env, jobject thiz, jbyteArray buffer, jint length, jboolean out) argument
119 android_hardware_UsbRequest_dequeue_array(JNIEnv *env, jobject thiz, jbyteArray buffer, jint length, jboolean out) argument
138 android_hardware_UsbRequest_queue_direct(JNIEnv *env, jobject thiz, jobject buffer, jint length, jboolean out) argument
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
H A DLoggingPrintStreamTest.java34 TestPrintStream out = new TestPrintStream(); field in class:LoggingPrintStreamTest
43 t.printStackTrace(out);
47 assertEquals(Arrays.asList(lines), out.lines);
52 out.print(4);
53 out.print(o);
54 out.print(2);
55 out.flush();
56 assertEquals(Arrays.asList("4" + o + "2"), out.lines);
61 out.print(4);
62 out
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPoint.java109 * @param out The parcel to write the point's coordinates into
112 public void writeToParcel(Parcel out, int flags) { argument
113 out.writeInt(x);
114 out.writeInt(y);
H A DPointF.java126 * @param out The parcel to write the point's coordinates into
129 public void writeToParcel(Parcel out, int flags) { argument
130 out.writeFloat(x);
131 out.writeFloat(y);
/frameworks/base/libs/hwui/
H A DTreeInfo.h82 // textures if we run out of cache space.
122 } out; member in class:android::uirenderer::TreeInfo
/frameworks/base/media/java/android/media/
H A DResampleInputStream.java148 byte[] out, int outOffset, int npoints);
147 fir21(byte[] in, int inOffset, byte[] out, int outOffset, int npoints) argument
/frameworks/base/media/jni/
H A Dandroid_media_ResampleInputStream.cpp93 short out[BUF_SIZE]; local
101 out[i] = (short)(sum >> 16);
105 env->SetByteArrayRegion(jOut, jOutOffset, jNpoints * 2, (jbyte*)out);
/frameworks/base/media/mca/filterpacks/native/base/
H A Dvec_types.h33 // out of boundary not checked
37 // out of boundary not checked
60 Vec<T, dim> out; local
62 out.data[i] = x.data[i] + y.data[i];
63 return out;
68 Vec<T, dim> out; local
70 out.data[i] = x.data[i] - y.data[i];
71 return out;
76 Vec<T, dim> out; local
78 out
84 Vec<T, dim> out; local
92 T out = 0; local
100 Vec<T, dim> out; local
108 Vec<T, dim> out; local
116 Vec<T, dim> out; local
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DETC1.java64 * @param out a native order direct buffer of size ENCODED_BLOCK_SIZE that receives the
68 public static native void encodeBlock(Buffer in, int validPixelMask, Buffer out); argument
76 * @param out a native order direct buffer of size DECODED_BLOCK_SIZE that will receive
81 public static native void decodeBlock(Buffer in, Buffer out); argument
92 * @param out a native order direct buffer of the encoded data.
98 int pixelSize, int stride, Buffer out);
103 * @param out native order direct buffer of the image data. Will be written such that
109 public static native void decodeImage(Buffer in, Buffer out, argument
97 encodeImage(Buffer in, int width, int height, int pixelSize, int stride, Buffer out) argument
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DNetworkControllerDataTest.java114 private void testDataActivity(int direction, boolean in, boolean out) { argument
119 DEFAULT_QS_ICON, in, out);
/frameworks/base/telecomm/java/android/telecom/
H A DPhoneAccountHandle.java136 public void writeToParcel(Parcel out, int flags) { argument
137 mComponentName.writeToParcel(out, flags);
138 out.writeString(mId);
139 mUserHandle.writeToParcel(out, flags);
H A DStatusHints.java94 public void writeToParcel(Parcel out, int flags) { argument
95 out.writeParcelable(mPackageName, flags);
96 out.writeCharSequence(mLabel);
97 out.writeInt(mIconResId);
98 out.writeParcelable(mExtras, 0);
/frameworks/base/telephony/java/android/telephony/
H A DDataConnectionRealTimeInfo.java86 public void writeToParcel(Parcel out, int flags) { argument
87 out.writeLong(mTime);
88 out.writeInt(mDcPowerState);
H A DIccOpenLogicalChannelResponse.java102 public void writeToParcel(Parcel out, int flags) { argument
103 out.writeInt(mChannel);
104 out.writeInt(mStatus);
106 out.writeInt(mSelectResponse.length);
107 out.writeByteArray(mSelectResponse);
109 out.writeInt(0);
/frameworks/compile/libbcc/lib/Core/
H A DCompiler.cpp173 // FIXME: Figure out which passes should be executed.
306 llvm::raw_ostream *out = pResult.dup(); local
307 if (out == NULL) {
312 enum Compiler::ErrorCode err = compile(pScript, *out, IRStream);
315 delete out;

Completed in 8475 milliseconds

1234567891011>>