/aosp12/bionic/libc/upstream-netbsd/lib/libc/inet/ |
H A D | nsap_addr.c | 62 _DIAGASSERT(ascii != NULL); in inet_nsap_addr() 65 if (ascii[0] != '0' || (ascii[1] != 'x' && ascii[1] != 'X')) in inet_nsap_addr() 67 ascii += 2; in inet_nsap_addr() 78 c = *ascii++; in inet_nsap_addr() 105 if (ascii) in inet_nsap_ntoa() 106 start = ascii; in inet_nsap_ntoa() 108 ascii = tmpbuf; in inet_nsap_ntoa() 112 *ascii++ = '0'; in inet_nsap_ntoa() 113 *ascii++ = 'x'; in inet_nsap_ntoa() 124 *ascii++ = '.'; in inet_nsap_ntoa() [all …]
|
/aosp12/bionic/libc/arch-common/bionic/ |
H A D | crtbrand.S | 45 1:.ascii "Android\0" // char name[] 48 1:.ascii "LinuxBionic\0" // char name[]
|
/aosp12/bionic/libc/dns/resolv/ |
H A D | res_debug.c | 932 loc_aton(const char *ascii, u_char *binary) in loc_aton() argument 945 cp = ascii; in loc_aton() 946 maxcp = cp + strlen(ascii); in loc_aton() 1041 loc_ntoa(const u_char *binary, char *ascii, size_t bufsiz) in loc_ntoa() argument 1064 if (ascii == NULL) in loc_ntoa() 1065 ascii = tmpbuf; in loc_ntoa() 1068 (void) snprintf(ascii, bufsiz, "; error: unknown LOC RR version"); in loc_ntoa() 1069 return (ascii); in loc_ntoa() 1127 snprintf(ascii, bufsiz, in loc_ntoa() 1143 return (ascii); in loc_ntoa()
|
/aosp12/packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/ |
H A D | Utility.java | 73 public static ByteArrayInputStream streamFromAsciiString(String ascii) { in streamFromAsciiString() argument 74 return new ByteArrayInputStream(toAscii(ascii)); in streamFromAsciiString()
|
/aosp12/system/core/debuggerd/libdebuggerd/ |
H A D | tombstone_proto_to_text.cpp | 215 char ascii[bytes_per_line + 1]; in print_thread_memory_dump() local 217 memset(ascii, '.', sizeof(ascii)); in print_thread_memory_dump() 218 ascii[bytes_per_line] = '\0'; in print_thread_memory_dump() 223 ascii[i] = byte; in print_thread_memory_dump() 227 CBS("%s %s", line.c_str(), ascii); in print_thread_memory_dump()
|
H A D | utility.cpp | 231 std::string ascii; in dump_memory() local 239 ascii += *ptr; in dump_memory() 241 ascii += '.'; in dump_memory() 246 _LOG(log, logtype::MEMORY, "%s %s\n", logline.c_str(), ascii.c_str()); in dump_memory()
|
/aosp12/packages/modules/Wifi/framework/tests/src/android/net/wifi/aware/ |
H A D | TlvBufferUtilsTest.java | 162 final String ascii = "ABC"; in testTlvIterate() local 200 tlv02.putString(0, ascii); in testTlvIterate() 213 equalTo(ascii.length())); in testTlvIterate() 214 collector.checkThat("tlv02-correct-iteration-DATA", tlv.getString().equals(ascii), in testTlvIterate()
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/util/ |
H A D | EmailAddress.java | 163 || (!allowI18n && !CharMatcher.ascii().matchesAllOf(host))) { in isValidInternal() 185 || (!allowI18n && !CharMatcher.ascii().matchesAllOf(user))) { in isValidInternal()
|
/aosp12/frameworks/base/core/proto/android/util/ |
H A D | log.proto | 68 EVENT_TYPE_LIST_STOP = 10; // ascii decimal value of char '\n' 69 EVENT_TYPE_UNKNOWN = 63; // ascii decimal value of char '?'
|
/aosp12/bionic/libc/arch-arm/bionic/ |
H A D | kuser_helper_on.S | 38 1:.ascii "Android\0" // char name[]
|
/aosp12/bionic/libc/arch-x86/generic/string/ |
H A D | strcat.S | 12 .ascii "warning: strcat() is almost always misused, please use strlcat()"
|
/aosp12/art/test/956-methodhandles/src/ |
H A D | Main.java | 847 byte [] ascii = testPattern.getBytes(StandardCharsets.US_ASCII); in testStringConstructors() 850 s = (String) mh.invokeExact(ascii, 0, ascii.length); in testStringConstructors() 859 s = (String) mh.invokeExact(ascii, 0, 5, StandardCharsets.US_ASCII.name()); in testStringConstructors() 868 s = (String) mh.invokeExact(ascii, 0, 5, StandardCharsets.US_ASCII); in testStringConstructors() 877 s = (String) mh.invokeExact(ascii, StandardCharsets.US_ASCII.name()); in testStringConstructors() 885 s = (String) mh.invokeExact(ascii, StandardCharsets.US_ASCII); in testStringConstructors() 893 s = (String) mh.invokeExact(ascii, 1, ascii.length - 2); in testStringConstructors() 902 s = (String) mh.invokeExact(ascii); in testStringConstructors()
|
/aosp12/system/extras/simpleperf/scripts/test/ |
H A D | do_test.py | 294 total=total_count, desc='test progress', ascii=' ##', 303 desc=test_proc.name, ascii=' ##',
|
/aosp12/system/core/fastboot/ |
H A D | README.md | 27 1. Host sends a command, which is an ascii string in a single 32 or "INFO". Additional bytes may contain an (ascii) informative 103 * Commands are ascii strings and sent without the quotes (which are
|
/aosp12/frameworks/base/cmds/bootanimation/ |
H A D | FORMAT.md | 76 * The file specifies glyphs for the ascii characters 32-127 (0x20-0x7F), both regular weight and
|
/aosp12/frameworks/base/media/java/android/media/ |
H A D | ExifInterface.java | 789 final byte[] ascii = value.getBytes(ASCII); in createByte() 790 return new ExifAttribute(IFD_FORMAT_BYTE, ascii.length, ascii); in createByte() 794 final byte[] ascii = (value + '\0').getBytes(ASCII); in createString() 795 return new ExifAttribute(IFD_FORMAT_STRING, ascii.length, ascii); in createString()
|
/aosp12/hardware/interfaces/gnss/1.0/ |
H A D | IGnssCallback.hal | 184 * The data itself is just ascii text and may extend over multiple sentences
|
/aosp12/art/test/559-checker-irreducible-loop/smali/ |
H A D | IrreducibleLoop.smali | 19 # Back-edges in the ascii-art graphs are represented with dash '-'.
|
/aosp12/packages/modules/adb/ |
H A D | protocol.txt | 289 remote (device) daemon. The service is requested by ascii name,
|
/aosp12/packages/apps/Car/DebuggingRestrictionController/libs/ |
H A D | httpcore-4.4.13.jar | ... public static final java.nio.charset.Charset ASCII
public static final java.nio.charset.Charset ... |
/aosp12/hardware/interfaces/radio/1.0/ |
H A D | types.hal | 1395 // Path is in hex ascii format eg "7f205f70"
|
/aosp12/packages/apps/TV/libs/m2/ |
H A D | auto-value-1.5.3.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
H A D | guava-28.0-android.jar | ... )
}
com/google/common/base/Ascii.class
Ascii.java
package com.google. ... |
H A D | guava-28.0-jre.jar | ... )
}
com/google/common/base/Ascii.class
Ascii.java
package com.google. ... |
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |