Searched refs:writeValue (Results 1 - 9 of 9) sorted by relevance

/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dbitbuffer.c141 UWord32 writeValue,
155 writeValue &= ~(0xffffffff << noBitsToWrite); // Mask out everything except the lowest noBitsToWrite bits
156 writeValue <<= 32 - wBitPos;
157 writeValue |= hBitBuf->cache;
162 tmp = (UWord8)((writeValue >> 24) & 0xFF);
165 writeValue <<= 8;
170 hBitBuf->cache = writeValue;
140 WriteBits(HANDLE_BIT_BUF hBitBuf, UWord32 writeValue, Word16 noBitsToWrite) argument
/frameworks/av/media/libstagefright/codecs/aacenc/inc/
H A Dbitbuffer.h79 UWord32 writeValue,
/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]);
H A DMtpProperty.h106 void writeValue(MtpDataPacket& packet, MtpPropertyValue& value);
/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/os/
H A DParcel.java173 * {@link #writeValue(Object)} and {@link #readValue(ClassLoader)} methods
596 * The Map values are written using {@link #writeValue} and must follow
619 writeValue(e.getKey());
620 writeValue(e.getValue());
644 writeValue(val.valueAt(i));
706 * {@link #writeValue} and must follow the specification there.
717 writeValue(val.get(i));
725 * {@link #writeValue} and must follow the specification there.
736 writeValue(val[i]);
744 * values are written using {@link #writeValue} an
1250 public final void writeValue(Object v) { method in class:Parcel
[all...]
/frameworks/base/core/java/android/widget/
H A DCompoundButton.java485 out.writeValue(checked);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java1117 dest.writeValue(mInputEnabled);
1118 dest.writeValue(mInStealthMode);
1119 dest.writeValue(mTactileFeedbackEnabled);
/frameworks/base/core/java/android/view/
H A DViewDebug.java1334 writeValue(out, value);
1423 private static void writeValue(BufferedWriter out, Object value) throws IOException { method in class:ViewDebug

Completed in 2063 milliseconds