Searched defs:reverse (Results 1 - 4 of 4) sorted by relevance

/system/extras/verity/
H A DVerityVerifier.java83 * @param value Byte array to reverse
85 private static byte[] reverse(byte[] value) { method in class:VerityVerifier
128 BigInteger modulus = new BigInteger(1, reverse(binaryMod));
129 BigInteger exponent = new BigInteger(1, reverse(binaryExp));
/system/core/logd/
H A DLogKlog.cpp331 bool reverse) {
382 if (reverse) {
329 sniffTime(log_time &now, const char **buf, size_t len, bool reverse) argument
/system/media/audio_route/
H A Daudio_route.c759 static int audio_route_update_path(struct audio_route *ar, const char *name, bool reverse) argument
776 i = reverse ? (path->length - 1) : 0;
777 end = reverse ? -1 : (int32_t)path->length;
815 i = reverse ? (i - 1) : (i + 1);
825 return audio_route_update_path(ar, name, false /*reverse*/);
833 return audio_route_update_path(ar, name, true /*reverse*/);
/system/core/adb/
H A Dcommandline.cpp143 " adb reverse --list - list all reverse socket connections from device\n"
144 " adb reverse <remote> <local> - reverse socket connections\n"
145 " reverse specs are one of:\n"
150 " adb reverse --no-rebind <remote> <local>\n"
151 " - same as 'adb reverse <remote> <local>' but fails\n"
153 " adb reverse --remove <remote>\n"
155 " adb reverse --remove-all - remove all reversed socket connections from device\n"
1747 } else if (!strcmp(argv[0], "forward") || !strcmp(argv[0], "reverse")) {
1748 bool reverse = !strcmp(argv[0], "reverse"); local
[all...]

Completed in 217 milliseconds