Searched defs:packed (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.java34 public boolean packed; field in class:Input
48 packed = false;
63 packed = in.readInt() == 1 ? true : false;
82 dest.writeInt(packed ? 1 : 0);
H A DResponseData.java80 public GetInkeyInputResponseData(String inData, boolean ucs2, boolean packed) { argument
83 this.mIsPacked = packed;
148 buf.write(0x00); // 7 bit packed
/frameworks/base/services/common_time/
H A Dcommon_time_server_packets.cpp70 inline uint64_t unpackDeviceID(uint64_t packed) { argument
71 return (packed & kDeviceIDMask);
74 inline uint8_t unpackDevicePriority(uint64_t packed) { argument
75 return static_cast<uint8_t>(packed >> kDevicePriorityShift);
188 uint64_t packed = packDeviceID(senderDeviceID, senderDevicePriority); local
189 SERIALIZE_INT64(packed);
198 uint64_t packed; local
199 DESERIALIZE_INT64(packed);
200 senderDeviceID = unpackDeviceID(packed);
201 senderDevicePriority = unpackDevicePriority(packed);
210 uint64_t packed = packDeviceID(deviceID, devicePriority); local
220 uint64_t packed; local
274 uint64_t packed = packDeviceID(deviceID, devicePriority); local
284 uint64_t packed; local
[all...]

Completed in 167 milliseconds