Home
last modified time | relevance | path

Searched refs:buf_string (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/openthread/third_party/tcplp/lib/test/
H A Dtest_all.c32 char buf_string[(buflen << 1) + 1]; in bmp_test() local
33 buf_string[0] = '\0'; in bmp_test()
35 snprintf(&buf_string[i << 1], 3, "%02X", buf[i]); in bmp_test()
37 if (strcmp(contents, buf_string) == 0) { in bmp_test()
41 printf("%s: FAIL: %s vs. %s\n", test_name, contents, buf_string); in bmp_test()
79 char buf_string[chdr->size + 1]; in cbuf_test() local
85 memcpy(&buf_string[0], &first.mData[0], first.mLength); in cbuf_test()
88 memcpy(&buf_string[first.mLength], &second.mData[0], second.mLength); in cbuf_test()
90 buf_string[first.mLength + second.mLength] = '\0'; in cbuf_test()
92 buf_string[first.mLength] = '\0'; in cbuf_test()
[all …]
/aosp_15_r20/system/core/init/
H A Dmount_handler.cpp185 auto buf_string = std::string(buf); in MountHandlerFunction() local
186 if (buf_string.find("/emulated") != std::string::npos) { in MountHandlerFunction()
189 auto entry = ParseMount(buf_string); in MountHandlerFunction()
/aosp_15_r20/external/tensorflow/tensorflow/python/framework/
H A Dc_api_util.py143 def __init__(self, buf_string): argument
144 self.buffer = c_api.TF_NewBufferFromString(compat.as_bytes(buf_string))