OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lengthBytes
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/tlslite/tlslite/utils/
codec.py
51
def getFixBytes(self,
lengthBytes
):
52
bytes = self.bytes[self.index : self.index+
lengthBytes
]
53
self.index +=
lengthBytes
57
lengthBytes
= self.get(lengthLength)
58
return self.getFixBytes(
lengthBytes
)
/external/chromium_org/third_party/WebKit/public/platform/
WebCryptoAlgorithmParams.h
132
WebCryptoHmacKeyParams(const WebCryptoAlgorithm& hash, bool hasLengthBytes, unsigned
lengthBytes
)
136
, m_optionalLengthBytes(
lengthBytes
)
139
BLINK_ASSERT(hasLengthBytes || !
lengthBytes
);
/frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java
290
int
lengthBytes
= input.length;
291
int lengthSeptets = (
lengthBytes
* 8) / 7;
298
if (
lengthBytes
% 7 == 0) {
299
if (
lengthBytes
> 0) {
300
if ((input[
lengthBytes
- 1] >> 1) == PADDING_CHAR) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java
555
int
lengthBytes
= 2 + (addressLength + 1) / 2;
558
ret = new GsmSmsAddress(mPdu, mCur,
lengthBytes
);
565
mCur +=
lengthBytes
;
[
all
...]
Completed in 82 milliseconds