Searched refs:out (Results 51 - 75 of 654) sorted by relevance

1234567891011>>

/frameworks/base/services/core/java/com/android/server/net/
H A DIpConfigStore.java72 private boolean writeConfig(DataOutputStream out, int configKey, argument
79 out.writeUTF(IP_ASSIGNMENT_KEY);
80 out.writeUTF(config.ipAssignment.toString());
85 out.writeUTF(LINK_ADDRESS_KEY);
86 out.writeUTF(ipAddress.getAddress().getHostAddress());
87 out.writeInt(ipAddress.getPrefixLength());
90 out.writeUTF(GATEWAY_KEY);
91 out.writeInt(0); // Default route.
92 out.writeInt(1); // Have a gateway.
93 out
[all...]
H A DDelayedDiskWrite.java37 public void onWriteCalled(DataOutputStream out) throws IOException; argument
63 DataOutputStream out = null;
65 out = new DataOutputStream(new BufferedOutputStream(
67 w.onWriteCalled(out);
71 if (out != null) {
73 out.close();
/frameworks/av/include/media/stagefright/foundation/
H A Dbase64.h29 void encodeBase64(const void *data, size_t size, AString *out);
/frameworks/base/core/java/android/app/backup/
H A DRestoreSet.java67 public void writeToParcel(Parcel out, int flags) { argument
68 out.writeString(name);
69 out.writeString(device);
70 out.writeLong(token);
/frameworks/base/core/java/android/net/
H A DNetworkQuotaInfo.java66 public void writeToParcel(Parcel out, int flags) { argument
67 out.writeLong(mEstimatedBytes);
68 out.writeLong(mSoftLimitBytes);
69 out.writeLong(mHardLimitBytes);
H A DNetworkState.java64 public void writeToParcel(Parcel out, int flags) { argument
65 out.writeParcelable(networkInfo, flags);
66 out.writeParcelable(linkProperties, flags);
67 out.writeParcelable(networkCapabilities, flags);
68 out.writeString(subscriberId);
69 out.writeString(networkId);
/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...]
/frameworks/base/include/android_runtime/
H A Dandroid_content_res_Configuration.h31 JNIEnv* env, jobject clazz, struct AConfiguration* out);
/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.java79 public void writeToParcel(Parcel out, int flags) { argument
80 out.writeInt(mStackState);
81 out.writeInt(mControllerTxTimeMs);
82 out.writeInt(mControllerRxTimeMs);
83 out.writeInt(mControllerIdleTimeMs);
84 out.writeInt(mControllerEnergyUsed);
/frameworks/rs/java/tests/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;
H A Dwbalance.rs79 uchar4 out;
82 out.r = sum15r/count15r;
83 out.g = sum15g/count15g;
84 out.b = sum15b/count15b;
86 out.r = out.g = out.b = 255;
89 return out;
109 uchar4 out;
110 out
[all...]
/frameworks/rs/java/tests/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/core/java/android/hardware/usb/
H A DUsbRequest.java136 boolean out = (mEndpoint.getDirection() == UsbConstants.USB_DIR_OUT);
139 result = native_queue_direct(buffer, length, out);
141 result = native_queue_array(buffer.array(), length, out);
154 boolean out = (mEndpoint.getDirection() == UsbConstants.USB_DIR_OUT);
159 bytesRead = native_dequeue_array(mBuffer.array(), mLength, out);
180 private native boolean native_queue_array(byte[] buffer, int length, boolean out); argument
181 private native int native_dequeue_array(byte[] buffer, int length, boolean out); argument
182 private native boolean native_queue_direct(ByteBuffer buffer, int length, boolean out); argument
/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/java/android/bluetooth/
H A DBluetoothActivityEnergyInfo.java79 public void writeToParcel(Parcel out, int flags) { argument
80 out.writeInt(mBluetoothStackState);
81 out.writeInt(mControllerTxTimeMs);
82 out.writeInt(mControllerRxTimeMs);
83 out.writeInt(mControllerIdleTimeMs);
84 out.writeInt(mControllerEnergyUsed);
/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/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/telephony/java/android/telephony/
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/base/telephony/java/com/android/ims/
H A DImsCallForwardInfo.java52 public void writeToParcel(Parcel out, int flags) { argument
53 out.writeInt(mCondition);
54 out.writeInt(mStatus);
55 out.writeInt(mToA);
56 out.writeString(mNumber);
57 out.writeInt(mTimeSeconds);
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSectionStrTab.hxx55 out() << '\n' << fillformat('=', 79) << '\n';
56 out().changeColor(raw_ostream::WHITE, true);
57 out() << "ELF String Table: " << this->section_header->getName() << '\n';
58 out().resetColor();
59 out() << fillformat('-', 79) << '\n';
63 out() << fillformat('=', 79) << '\n';
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A Dwbalance.rs98 uchar4 out;
101 out.r = sum15r/count15r;
102 out.g = sum15g/count15g;
103 out.b = sum15b/count15b;
105 out.r = out.g = out.b = 255;
108 return out;
134 void whiteBalanceKernel(const uchar4 *in, uchar4 *out) {
139 out
[all...]

Completed in 570 milliseconds

1234567891011>>