Searched refs:out (Results 76 - 100 of 1061) sorted by relevance

1234567891011>>

/frameworks/base/libs/androidfw/include/androidfw/
H A DLocaleData.h30 void localeDataComputeScript(char out[4], const char* language, const char* region);
/frameworks/base/location/java/android/location/
H A DIGeocodeProvider.aidl30 in GeocoderParams params, out List<Address> addrs);
35 in GeocoderParams params, out List<Address> addrs);
/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/WallpaperCropper/src/com/android/gallery3d/exif/
H A DOrderedDataOutputStream.java28 public OrderedDataOutputStream(OutputStream out) { argument
29 super(out);
40 out.write(mByteBuffer.array(), 0, 2);
47 out.write(mByteBuffer.array());
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiChannel.java64 public void writeToParcel(Parcel out, int flags) { argument
65 out.writeInt(freqMHz);
66 out.writeInt(channelNum);
67 out.writeInt(isDFS ? 1 : 0);
H A DWifiActivityEnergyInfo.java114 public void writeToParcel(Parcel out, int flags) { argument
115 out.writeLong(mTimestamp);
116 out.writeInt(mStackState);
117 out.writeLong(mControllerTxTimeMs);
118 out.writeLongArray(mControllerTxTimePerLevelMs);
119 out.writeLong(mControllerRxTimeMs);
120 out.writeLong(mControllerIdleTimeMs);
121 out.writeLong(mControllerEnergyUsed);
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A Dartistic1.rs59 uchar4 out = rsPackColorTo8888(v1);
61 out.r = gLutR[out.r];
62 out.g = gLutG[out.g];
63 out.b = gLutB[out.b];
64 return out;
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A Dartistic1.rs59 uchar4 out = rsPackColorTo8888(v1);
61 out.r = gLutR[out.r];
62 out.g = gLutG[out.g];
63 out.b = gLutB[out.b];
64 return out;
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A Dartistic1.rs59 uchar4 out = rsPackColorTo8888(v1);
61 out.r = gLutR[out.r];
62 out.g = gLutG[out.g];
63 out.b = gLutB[out.b];
64 return out;
/frameworks/base/tools/bit/
H A Dmain.cpp275 print_usage(FILE* out) { argument
276 fprintf(out, "usage: bit OPTIONS PATTERN\n");
277 fprintf(out, "\n");
278 fprintf(out, " Build, sync and test android code.\n");
279 fprintf(out, "\n");
280 fprintf(out, " The -b -i and -t options allow you to specify which phases\n");
281 fprintf(out, " you want to run. If none of those options are given, then\n");
282 fprintf(out, " all phases are run. If any of these options are provided\n");
283 fprintf(out, " then only the listed phases are run.\n");
284 fprintf(out, "\
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothActivityEnergyInfo.java90 public void writeToParcel(Parcel out, int flags) { argument
91 out.writeLong(mTimestamp);
92 out.writeInt(mBluetoothStackState);
93 out.writeLong(mControllerTxTimeMs);
94 out.writeLong(mControllerRxTimeMs);
95 out.writeLong(mControllerIdleTimeMs);
96 out.writeLong(mControllerEnergyUsed);
97 out.writeTypedArray(mUidTraffic, flags);
H A DBluetoothHidDeviceAppSdpSettings.java73 public void writeToParcel(Parcel out, int flags) { argument
74 out.writeString(name);
75 out.writeString(description);
76 out.writeString(provider);
77 out.writeByte(subclass);
78 out.writeByteArray(descriptors);
/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterBlobArgument.java45 public void writeValue(Parcel out) { argument
46 out.writeByteArray(blob);
H A DKeymasterLongArgument.java45 public void writeValue(Parcel out) { argument
46 out.writeLong(value);
/frameworks/base/core/tests/coretests/src/android/util/
H A DArrayMapTest.java44 System.out.println("Starting ArrayMap concurrency test");
57 System.out.println("[successfully caught CME at put #" + i
61 System.out.print(".");
69 System.out.print("X");
78 System.out.println(
84 System.out.println();
96 System.out.print(".");
100 System.out.print("X");
/frameworks/base/telephony/java/com/android/ims/
H A DImsExternalCallState.java84 public void writeToParcel(Parcel out, int flags) { argument
85 out.writeInt(mCallId);
86 out.writeParcelable(mAddress, 0);
87 out.writeInt(mIsPullable ? 1 : 0);
88 out.writeInt(mCallState);
89 out.writeInt(mCallType);
90 out.writeInt(mIsHeld ? 1 : 0);
91 Rlog.d(TAG, "ImsExternalCallState writeToParcel = " + out.toString());
/frameworks/base/core/java/android/app/admin/
H A DConnectEvent.java92 public void writeToParcel(Parcel out, int flags) { argument
94 out.writeInt(PARCEL_TOKEN_CONNECT_EVENT);
95 out.writeString(ipAddress);
96 out.writeInt(port);
97 out.writeString(packageName);
98 out.writeLong(timestamp);
/frameworks/base/core/java/android/app/job/
H A DJobWorkItem.java114 public void writeToParcel(Parcel out, int flags) { argument
116 out.writeInt(1);
117 mIntent.writeToParcel(out, 0);
119 out.writeInt(0);
121 out.writeInt(mDeliveryCount);
122 out.writeInt(mWorkId);
/frameworks/base/core/java/android/ddm/
H A DDdmHandleAppName.java93 ByteBuffer out = ByteBuffer.allocate(
97 out.order(ChunkHandler.CHUNK_ORDER);
98 out.putInt(appName.length());
99 putString(out, appName);
100 out.putInt(userId);
102 Chunk chunk = new Chunk(CHUNK_APNM, out);
/frameworks/base/core/java/android/net/
H A DNetworkMisc.java87 public void writeToParcel(Parcel out, int flags) { argument
88 out.writeInt(allowBypass ? 1 : 0);
89 out.writeInt(explicitlySelected ? 1 : 0);
90 out.writeInt(acceptUnvalidated ? 1 : 0);
91 out.writeString(subscriberId);
92 out.writeInt(provisioningNotificationDisabled ? 1 : 0);
/frameworks/base/core/java/android/net/metrics/
H A DDefaultNetworkEvent.java57 public void writeToParcel(Parcel out, int flags) { argument
58 out.writeInt(netId);
59 out.writeIntArray(transportTypes);
60 out.writeInt(prevNetId);
61 out.writeByte(prevIPv4 ? (byte) 1 : (byte) 0);
62 out.writeByte(prevIPv6 ? (byte) 1 : (byte) 0);
/frameworks/base/core/java/android/webkit/
H A DWebViewProviderInfo.java66 public void writeToParcel(Parcel out, int flags) { argument
67 out.writeString(packageName);
68 out.writeString(description);
69 out.writeInt(availableByDefault ? 1 : 0);
70 out.writeInt(isFallback ? 1 : 0);
71 out.writeStringArray(signatures);
/frameworks/base/libs/androidfw/tests/
H A DTestHelpers.h29 static inline ::std::ostream& operator<<(::std::ostream& out, const android::String8& str) { argument
30 return out << str.string();
33 static inline ::std::ostream& operator<<(::std::ostream& out, const android::String16& str) { argument
34 return out << android::String8(str).string();
55 static inline ::std::ostream& operator<<(::std::ostream& out, const ResTable_config& c) { argument
56 return out << c.toString().string();
/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/services/core/java/com/android/server/net/
H A DDelayedDiskWrite.java37 public void onWriteCalled(DataOutputStream out) throws IOException; argument
67 DataOutputStream out = null;
70 out = new DataOutputStream(new BufferedOutputStream(
73 w.onWriteCalled(out);
77 if (out != null) {
79 out.close();

Completed in 492 milliseconds

1234567891011>>