Searched defs:out (Results 276 - 300 of 616) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java346 public void writeToParcel(Parcel out, int flags) { argument
347 mFd.writeToParcel(out, flags);
348 out.writeLong(mStartOffset);
349 out.writeLong(mLength);
351 out.writeInt(1);
352 out.writeBundle(mExtras);
354 out.writeInt(0);
/frameworks/base/core/java/android/hardware/location/
H A DNanoApp.java327 public void writeToParcel(Parcel out, int flags) { argument
335 out.writeString(mPublisher);
336 out.writeString(mName);
337 out.writeLong(mAppId);
338 out.writeInt(mAppVersion);
339 out.writeInt(mNeededReadMemBytes);
340 out.writeInt(mNeededWriteMemBytes);
341 out.writeInt(mNeededExecMemBytes);
343 out.writeInt(mNeededSensors.length);
344 out
[all...]
H A DNanoAppInstanceInfo.java309 public void writeToParcel(Parcel out, int flags) { argument
310 out.writeString(mPublisher);
311 out.writeString(mName);
312 out.writeLong(mAppId);
313 out.writeInt(mAppVersion);
314 out.writeInt(mContexthubId);
315 out.writeInt(mNeededReadMemBytes);
316 out.writeInt(mNeededWriteMemBytes);
317 out.writeInt(mNeededExecMemBytes);
320 out
[all...]
/frameworks/base/core/java/android/hardware/usb/
H A DUsbRequest.java183 boolean out = (mEndpoint.getDirection() == UsbConstants.USB_DIR_OUT);
195 result = native_queue_direct(buffer, length, out);
197 result = native_queue_array(buffer.array(), length, out);
351 private native boolean native_queue_array(byte[] buffer, int length, boolean out); argument
352 private native int native_dequeue_array(byte[] buffer, int length, boolean out); argument
353 private native boolean native_queue_direct(ByteBuffer buffer, int length, boolean out); argument
/frameworks/base/core/java/android/nfc/
H A DTag.java390 /*package*/ static void writeBytesWithNull(Parcel out, byte[] b) { argument
392 out.writeInt(-1);
395 out.writeInt(b.length);
396 out.writeByteArray(b);
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java244 public void writeToParcel(Parcel out, int flags) { argument
245 out.writeString(mTag);
246 out.writeLong(mTimeMillis);
248 out.writeInt(mFlags & ~HAS_BYTE_ARRAY); // Clear bit just to be safe
249 mFileDescriptor.writeToParcel(out, flags);
251 out.writeInt(mFlags | HAS_BYTE_ARRAY);
252 out.writeByteArray(mData);
H A DShellCommand.java58 public void init(Binder target, FileDescriptor in, FileDescriptor out, FileDescriptor err, argument
62 mOut = out;
78 public int exec(Binder target, FileDescriptor in, FileDescriptor out, FileDescriptor err, argument
89 init(target, in, out, err, args, callback, start);
H A DUserHandle.java179 * Returns the app id (or base uid) for a given uid, stripping out the user id from it.
227 * Generate a text representation of the uid, breaking out its individual
252 * Generate a text representation of the uid, breaking out its individual
263 * Generate a text representation of the uid, breaking out its individual
378 public void writeToParcel(Parcel out, int flags) { argument
379 out.writeInt(mHandle);
387 * @param out The Parcel in which the UserHandle will be placed.
391 public static void writeToParcel(UserHandle h, Parcel out) { argument
393 h.writeToParcel(out, 0);
395 out
[all...]
H A DVibrationEffect.java223 public void writeToParcel(Parcel out, int flags) { argument
224 out.writeInt(PARCEL_TOKEN_ONE_SHOT);
225 out.writeLong(mTiming);
226 out.writeInt(mAmplitude);
335 public void writeToParcel(Parcel out, int flags) { argument
336 out.writeInt(PARCEL_TOKEN_WAVEFORM);
337 out.writeLongArray(mTimings);
338 out.writeIntArray(mAmplitudes);
339 out.writeInt(mRepeat);
412 public void writeToParcel(Parcel out, in argument
[all...]
/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterArguments.java147 throw new IllegalArgumentException("Int tag value out of range: " + value);
205 throw new IllegalArgumentException("Long tag value out of range: " + value);
293 throw new IllegalArgumentException("Date tag value out of range: " + value);
357 public void writeToParcel(Parcel out, int flags) { argument
358 out.writeTypedList(mArguments);
/frameworks/base/core/java/android/service/notification/
H A DNotificationRankingUpdate.java78 public void writeToParcel(Parcel out, int flags) { argument
79 out.writeStringArray(mKeys);
80 out.writeStringArray(mInterceptedKeys);
81 out.writeBundle(mVisibilityOverrides);
82 out.writeBundle(mSuppressedVisualEffects);
83 out.writeIntArray(mImportance);
84 out.writeBundle(mImportanceExplanation);
85 out.writeBundle(mOverrideGroupKeys);
86 out.writeBundle(mChannels);
87 out
[all...]
H A DStatusBarNotification.java161 public void writeToParcel(Parcel out, int flags) { argument
162 out.writeString(this.pkg);
163 out.writeString(this.opPkg);
164 out.writeInt(this.id);
166 out.writeInt(1);
167 out.writeString(this.tag);
169 out.writeInt(0);
171 out.writeInt(this.uid);
172 out.writeInt(this.initialPid);
173 this.notification.writeToParcel(out, flag
[all...]
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DSparseMappingTable.java294 * Clear out the table, and reset the sequence numbers so future writes
298 // Clear out our table.
312 public void writeToParcel(Parcel out) { argument
313 out.writeInt(mSequence);
314 out.writeInt(mSize);
316 out.writeInt(mTable[i]);
341 // Clear it out
485 * Wipe out all the data.
488 // Clear out mLongs, and prime it with a new array of data
493 // Increment out sequenc
501 writeToParcel(Parcel out) argument
567 writeCompactedLongArray(Parcel out, long[] array, int num) argument
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DVpnConfig.java146 public void writeToParcel(Parcel out, int flags) { argument
147 out.writeString(user);
148 out.writeString(interfaze);
149 out.writeString(session);
150 out.writeInt(mtu);
151 out.writeTypedList(addresses);
152 out.writeTypedList(routes);
153 out.writeStringList(dnsServers);
154 out.writeStringList(searchDomains);
155 out
[all...]
H A DVpnProfile.java93 public void writeToParcel(Parcel out, int flags) { argument
94 out.writeString(key);
95 out.writeString(name);
96 out.writeInt(type);
97 out.writeString(server);
98 out.writeString(username);
99 out.writeString(password);
100 out.writeString(dnsServers);
101 out.writeString(searchDomains);
102 out
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DFastPrintWriter.java71 * Constructs a new {@code PrintWriter} with {@code out} as its target
75 * @param out
78 * if {@code out} is {@code null}.
80 public FastPrintWriter(OutputStream out) { argument
81 this(out, false, 8192);
85 * Constructs a new {@code PrintWriter} with {@code out} as its target
90 * @param out
96 * if {@code out} is {@code null}.
98 public FastPrintWriter(OutputStream out, boolean autoFlush) { argument
99 this(out, autoFlus
119 FastPrintWriter(OutputStream out, boolean autoFlush, int bufferLen) argument
[all...]
H A DFileRotator.java76 public void write(OutputStream out) throws IOException; argument
207 public void write(OutputStream out) throws IOException {
208 writer.write(out);
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java70 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { argument
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfDocument.cpp142 static void nativeWriteTo(JNIEnv* env, jobject thiz, jlong documentPtr, jobject out, argument
145 SkWStream* skWStream = CreateJavaOutputStreamAdaptor(env, out, chunk);
/frameworks/base/core/jni/
H A Dandroid_app_admin_SecurityLog.cpp24 // The size of the tag number comes out of the payload size.
129 static void readEvents(JNIEnv* env, int loggerMode, jlong startTime, jobject out) { argument
186 env->CallBooleanMethod(out, gCollectionAddID, event);
195 jobject out) {
197 if (out == NULL) {
201 readEvents(env, ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, 0, out);
206 jobject out) {
208 if (out == NULL) {
212 readEvents(env, ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, timestamp, out);
216 jobject out) {
194 android_app_admin_SecurityLog_readEvents(JNIEnv* env, jobject , jobject out) argument
204 android_app_admin_SecurityLog_readEventsSince(JNIEnv* env, jobject , jlong timestamp, jobject out) argument
215 android_app_admin_SecurityLog_readPreviousEvents(JNIEnv* env, jobject , jobject out) argument
225 android_app_admin_SecurityLog_readEventsOnWrapping(JNIEnv* env, jobject , jlong timestamp, jobject out) argument
[all...]
H A Dandroid_util_EventLog.cpp147 static void readEvents(JNIEnv* env, int loggerMode, jintArray tags, jlong startTime, jobject out) { argument
215 env->CallBooleanMethod(out, gCollectionAddID, event);
234 jobject out) {
236 if (tags == NULL || out == NULL) {
241 readEvents(env, ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, tags, 0, out);
252 jobject out) {
253 if (tags == NULL || out == NULL) {
258 tags, timestamp, out);
232 android_util_EventLog_readEvents(JNIEnv* env, jobject clazz UNUSED, jintArray tags, jobject out) argument
249 android_util_EventLog_readEventsOnWrapping(JNIEnv* env, jobject clazz UNUSED, jintArray tags, jlong timestamp, jobject out) argument
/frameworks/base/graphics/java/android/graphics/
H A DRect.java602 * @param out The parcel to write the rectangle's coordinates into
604 public void writeToParcel(Parcel out, int flags) { argument
605 out.writeInt(left);
606 out.writeInt(top);
607 out.writeInt(right);
608 out.writeInt(bottom);
H A DRectF.java448 * Set the dst integer Rect by rounding "out" this rectangle, choosing the
547 * @param out The parcel to write the rectangle's coordinates into
549 public void writeToParcel(Parcel out, int flags) { argument
550 out.writeFloat(left);
551 out.writeFloat(top);
552 out.writeFloat(right);
553 out.writeFloat(bottom);
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfDocument.java165 * @param out The output stream. Cannot be null.
169 public void writeTo(OutputStream out) throws IOException { argument
172 if (out == null) {
173 throw new IllegalArgumentException("out cannot be null!");
175 nativeWriteTo(mNativeDocument, out, mChunk);
244 private native void nativeWriteTo(long nativeDocument, OutputStream out, byte[] chunk); argument
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreSignatureSpiBase.java205 true, // permit aborting this operation if keystore runs out of resources
310 protected final int engineSign(byte[] out, int outOffset, int outLen) argument
312 return super.engineSign(out, outOffset, outLen);

Completed in 298 milliseconds

<<11121314151617181920>>