OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:roc
(Results
1 - 3
of
3
) sorted by null
/external/srtp/srtp/
ekt.c
170
uint32_t
roc
;
local
187
/* set the SRTP
ROC
*/
188
roc
= srtcp_packet_get_ekt_roc(srtcp_hdr, pkt_octet_len);
189
err = rdbx_set_roc(&stream->rtp_rdbx,
roc
);
204
uint32_t
roc
;
local
226
/* copy
ROC
into packet */
227
roc
= (uint32_t)(pkt_index >> 16);
228
*((uint32_t *)packet) = be32_to_cpu(
roc
);
229
debug_print(mod_srtp, "writing EKT
ROC
: %s,",
230
octet_string_hex_string(packet, sizeof(
roc
)));
[
all
...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
Collections2Test.java
282
Comparator<String>
roc
= Collections.reverseOrder();
local
283
assertNotNull("Assert 0: comparator must not be null",
roc
);
286
roc
instanceof Serializable);
290
Arrays.sort(numbers,
roc
);
299
Comparator<String>
roc
= Collections
local
301
assertNotNull("Assert 0: comparator must not be null",
roc
);
304
roc
instanceof Serializable);
308
Arrays.sort(numbers,
roc
);
312
roc
= Collections.reverseOrder(null);
313
assertNotNull("Assert 3: comparator must not be null",
roc
);
[
all
...]
/libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java
311
Comparator<String>
roc
= Collections.reverseOrder();
local
312
assertNotNull("Assert 0: comparator must not be null",
roc
);
315
roc
instanceof Serializable);
319
Arrays.sort(numbers,
roc
);
328
Comparator<String>
roc
= Collections
local
330
assertNotNull("Assert 0: comparator must not be null",
roc
);
333
roc
instanceof Serializable);
337
Arrays.sort(numbers,
roc
);
341
roc
= Collections.reverseOrder(null);
342
assertNotNull("Assert 3: comparator must not be null",
roc
);
[
all
...]
Completed in 70 milliseconds