OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lenPos
(Results
1 - 4
of
4
) sorted by null
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
ANQPFactory.java
51
int
lenPos
= target.position();
63
target.putShort(
lenPos
, (short) (target.position() -
lenPos
- Constants.BYTES_IN_SHORT));
95
int
lenPos
= target.position();
109
target.putShort(
lenPos
, (short) (target.position() -
lenPos
- Constants.BYTES_IN_SHORT));
118
int
lenPos
= target.position();
126
target.putShort(
lenPos
, (short) (target.position() -
lenPos
- Constants.BYTES_IN_SHORT));
TestDriver.java
57
int
lenPos
= request.position();
61
byte[] requestBytes = prepRequest(
lenPos
, request);
/frameworks/base/core/java/android/content/
IntentFilter.java
288
int[] lengths, int
lenPos
) {
290
final int N = lengths[
lenPos
];
298
int[] lengths, int
lenPos
) {
299
if (findStringInSet(set, string, lengths,
lenPos
) >= 0) return set;
303
lengths[
lenPos
] = 1;
306
final int N = lengths[
lenPos
];
309
lengths[
lenPos
] = N+1;
317
lengths[
lenPos
] = N+1;
322
int[] lengths, int
lenPos
) {
323
int pos = findStringInSet(set, string, lengths,
lenPos
);
[
all
...]
/frameworks/base/media/java/android/media/
ExifInterface.java
238
int
lenPos
= attrStr.indexOf(' ', ptr);
239
int attrLen = Integer.parseInt(attrStr.substring(ptr,
lenPos
));
240
ptr =
lenPos
+ 1; // skip pas the space
Completed in 105 milliseconds