Searched defs:writeValue (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterBlobArgument.java45 public void writeValue(Parcel out) { method in class:KeymasterBlobArgument
H A DKeymasterBooleanArgument.java44 public void writeValue(Parcel out) { method in class:KeymasterBooleanArgument
H A DKeymasterDateArgument.java45 public void writeValue(Parcel out) { method in class:KeymasterDateArgument
H A DKeymasterIntArgument.java47 public void writeValue(Parcel out) { method in class:KeymasterIntArgument
H A DKeymasterLongArgument.java45 public void writeValue(Parcel out) { method in class:KeymasterLongArgument
H A DKeymasterArgument.java73 public abstract void writeValue(Parcel out); method in class:KeymasterArgument
83 writeValue(out);
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dbitbuffer.c118 UWord32 writeValue,
132 writeValue &= ~(0xffffffff << noBitsToWrite); // Mask out everything except the lowest noBitsToWrite bits
133 writeValue <<= 32 - wBitPos;
134 writeValue |= hBitBuf->cache;
139 tmp = (UWord8)((writeValue >> 24) & 0xFF);
142 writeValue <<= 8;
147 hBitBuf->cache = writeValue;
117 WriteBits(HANDLE_BIT_BUF hBitBuf, UWord32 writeValue, Word16 noBitsToWrite) argument
/frameworks/av/media/mtp/
H A DMtpProperty.cpp201 writeValue(packet, mDefaultValue);
203 writeValue(packet, mCurrentValue);
209 writeValue(packet, mMinimumValue);
210 writeValue(packet, mMaximumValue);
211 writeValue(packet, mStepSize);
215 writeValue(packet, mEnumValues[i]);
478 void MtpProperty::writeValue(MtpDataPacket& packet, MtpPropertyValue& value) { function in class:android::MtpProperty
529 ALOGE("unknown type %04X in MtpProperty::writeValue", mType);
556 writeValue(packet, values[i]);
/frameworks/base/services/core/java/com/android/server/wm/
H A DViewServer.java182 private static boolean writeValue(Socket client, String value) { method in class:ViewServer
239 result = writeValue(mClient, VALUE_PROTOCOL_VERSION);
241 result = writeValue(mClient, VALUE_SERVER_VERSION);
/frameworks/base/core/java/android/view/
H A DViewDebug.java1346 writeValue(out, value);
1435 private static void writeValue(BufferedWriter out, Object value) throws IOException { method in class:ViewDebug
/frameworks/base/core/java/android/os/
H A DParcel.java177 * {@link #writeValue(Object)} and {@link #readValue(ClassLoader)} methods
638 * The Map values are written using {@link #writeValue} and must follow
661 writeValue(e.getKey());
662 writeValue(e.getValue());
686 writeValue(val.valueAt(i));
748 * {@link #writeValue} and must follow the specification there.
759 writeValue(val.get(i));
767 * {@link #writeValue} and must follow the specification there.
778 writeValue(val[i]);
786 * values are written using {@link #writeValue} an
1325 public final void writeValue(Object v) { method in class:Parcel
[all...]

Completed in 730 milliseconds