Searched defs:output (Results 1 - 14 of 14) sorted by relevance

/bionic/linker/tests/
H A Dlinker_utils_test.cpp45 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 Dbase64.c71 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/libc/kernel/uapi/linux/
H A Dmatroxfb.h27 __u32 output; member in struct:matroxioc_output_mode
H A Duhid.h172 struct uhid_output_req output; member in union:uhid_event::__anon928
H A Dvideodev2.h1429 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon969
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dmatroxfb.h27 __u32 output; member in struct:matroxioc_output_mode
H A Duhid.h172 struct uhid_output_req output; member in union:uhid_event::__anon2001
H A Dvideodev2.h1429 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon2042
/bionic/tests/
H A Dutils.h189 std::string output; local
193 output.append(buf, bytes_read);
199 ASSERT_EQ(expected_output, output);
H A Dgtest_main.cpp341 // bionic cts test needs gtest output format.
1100 options.gtest_output = testing::GTEST_FLAG(output);
1146 std::string output = args[i] + strlen("--gtest_output="); local
1147 // generate output xml file path according to the strategy in gtest.
1149 if (strncmp(output.c_str(), "xml:", strlen("xml:")) == 0) {
1150 output = output.substr(strlen("xml:"));
1151 if (output.size() == 0) {
1155 if (success && output[0] != '/') {
1158 output
[all...]
/bionic/libc/kernel/uapi/linux/dvb/
H A Ddmx.h96 dmx_output_t output; member in struct:dmx_pes_filter_params
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/dvb/
H A Ddmx.h96 dmx_output_t output; member in struct:dmx_pes_filter_params
/bionic/libc/dns/resolv/
H A Dres_debug.c1163 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 Deventlib_p.h220 FILE *output; member in struct:__anon1153

Completed in 540 milliseconds