/external/chromium_org/third_party/libsrtp/srtp/srtp/ |
ekt.c | 170 uint32_t roc; local 190 /* set the SRTP ROC */ 191 roc = srtcp_packet_get_ekt_roc(srtcp_hdr, pkt_octet_len); 192 err = rdbx_set_roc(&stream->rtp_rdbx, roc); 207 uint32_t roc; local 229 /* copy ROC into packet */ 230 roc = (uint32_t)(pkt_index >> 16); 231 *((uint32_t *)packet) = be32_to_cpu(roc); 232 debug_print(mod_srtp, "writing EKT ROC: %s,", 233 octet_string_hex_string(packet, sizeof(roc))); [all...] |
/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...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
Collections2Test.java | 281 Comparator<String> roc = Collections.reverseOrder(); local 282 assertNotNull("Assert 0: comparator must not be null", roc); 285 roc instanceof Serializable); 289 Arrays.sort(numbers, roc); 298 Comparator<String> roc = Collections local 300 assertNotNull("Assert 0: comparator must not be null", roc); 303 roc instanceof Serializable); 307 Arrays.sort(numbers, roc); 311 roc = Collections.reverseOrder(null); 312 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...] |