/bionic/linker/tests/ |
H A D | linker_utils_test.cpp | 45 std::string output; local 46 ASSERT_TRUE(normalize_path("/../root///dir/.///dir2/somedir/../zipfile!/dir/dir9//..///afile", &output)); 47 ASSERT_EQ("/root/dir/dir2/zipfile!/dir/afile", output); 49 ASSERT_TRUE(normalize_path("/../root///dir/.///dir2/somedir/.../zipfile!/.dir/dir9//..///afile", &output)); 50 ASSERT_EQ("/root/dir/dir2/somedir/.../zipfile!/.dir/afile", output); 52 ASSERT_TRUE(normalize_path("/root/..", &output)); 53 ASSERT_EQ("/", output); 55 ASSERT_TRUE(normalize_path("/root/notroot/..", &output)); 56 ASSERT_EQ("/root/", output); 58 ASSERT_TRUE(normalize_path("/a/../../b", &output)); [all...] |
/bionic/libc/upstream-openbsd/lib/libc/net/ |
H A D | base64.c | 71 The encoding process represents 24-bit groups of input bits as output 79 output string. 115 output will be an integral multiple of 4 characters 118 here, the final unit of encoded output will be two 121 here, the final unit of encoded output will be three 134 u_char output[4]; local 143 output[0] = input[0] >> 2; 144 output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4); 145 output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6); 146 output[ [all...] |
/bionic/tools/versioner/ |
H A D | run_tests.py | 25 (output, _) = process.communicate() 36 print(indent(output)) 38 elif not output.endswith(expected_output): 39 print("{} {}: expected output mismatch".format( 45 print(indent(output)) 50 print(indent(output))
|
/bionic/libc/kernel/uapi/linux/ |
H A D | matroxfb.h | 26 __u32 output; member in struct:matroxioc_output_mode
|
H A D | uhid.h | 142 struct uhid_output_req output; member in union:uhid_event::__anon930
|
H A D | videodev2.h | 1147 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon971
|
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/ |
H A D | matroxfb.h | 26 __u32 output; member in struct:matroxioc_output_mode
|
H A D | uhid.h | 142 struct uhid_output_req output; member in union:uhid_event::__anon2001
|
H A D | videodev2.h | 1147 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon2042
|
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/ |
H A D | matroxfb.h | 26 __u32 output; member in struct:matroxioc_output_mode
|
H A D | uhid.h | 142 struct uhid_output_req output; member in union:uhid_event::__anon3184
|
H A D | videodev2.h | 1147 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon3225
|
/bionic/libc/tools/ |
H A D | symbols.py | 33 # Example readelf output: 44 output = subprocess.check_output(['readelf', sym_type, '-W', elf_file]) 45 for line in output.split('\n'):
|
H A D | test_genseccomp.py | 176 output = genseccomp.convert_bpf_to_output(["line1", "line2"], "arm") 191 self.assertEquals(output, expected_output) 207 output = genseccomp.construct_bpf(syscall_files, "arm", self.get_headers("arm"), 227 self.assertEquals(output, expected_output)
|
H A D | genseccomp.py | 128 # For a single range, output a simple jump to {fail} or {allow}. We can't set 131 # For multiple ranges, split into two, convert the two halves and output a jump 223 output = construct_bpf(files, arch, header_path, switches) 225 # And output policy 230 if output == existing: 234 output_file.write(output)
|
/bionic/tests/ |
H A D | utils.h | 188 std::string output; local 192 output.append(buf, bytes_read); 198 ASSERT_EQ(expected_output, output);
|
H A D | gtest_main.cpp | 340 // bionic cts test needs gtest output format. 1067 options.gtest_output = testing::GTEST_FLAG(output); 1113 std::string output = args[i] + strlen("--gtest_output="); local 1114 // generate output xml file path according to the strategy in gtest. 1116 if (strncmp(output.c_str(), "xml:", strlen("xml:")) == 0) { 1117 output = output.substr(strlen("xml:")); 1118 if (output.size() == 0) { 1122 if (success && output[0] != '/') { 1125 output [all...] |
/bionic/libc/kernel/uapi/linux/dvb/ |
H A D | dmx.h | 81 dmx_output_t output; member in struct:dmx_pes_filter_params
|
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/dvb/ |
H A D | dmx.h | 81 dmx_output_t output; member in struct:dmx_pes_filter_params
|
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/dvb/ |
H A D | dmx.h | 81 dmx_output_t output; member in struct:dmx_pes_filter_params
|
/bionic/tools/versioner/src/ |
H A D | DeclarationDatabase.cpp | 240 bool Declaration::calculateAvailability(DeclarationAvailability* output) const { 247 *output = avail; 251 bool Symbol::calculateAvailability(DeclarationAvailability* output) const { 269 *output = avail;
|
H A D | DeclarationDatabase.h | 133 bool calculateAvailability(DeclarationAvailability* output) const; 167 bool calculateAvailability(DeclarationAvailability* output) const;
|
/bionic/libc/dns/resolv/ |
H A D | res_debug.c | 1163 static char output[15]; /* YYYYMMDDHHMMSS and null */ local 1175 snprintf(output, sizeof(output), "%04d%02d%02d%02d%02d%02d", 1178 return (output);
|
/bionic/libc/upstream-netbsd/lib/libc/isc/ |
H A D | eventlib_p.h | 220 FILE *output; member in struct:__anon1153
|