Searched refs:os (Results 1 - 25 of 49) sorted by relevance

12

/bind-9.11.3/bin/python/
H A Ddnssec-checkds.py.in10 import os
13 sys.path.insert(0, os.path.dirname(sys.argv[0]))
14 if os.name != 'nt':
18 sys.path.insert(1, os.path.join('@prefix@', 'lib',
H A Ddnssec-coverage.py.in10 import os
13 sys.path.insert(0, os.path.dirname(sys.argv[0]))
14 if os.name != 'nt':
18 sys.path.insert(1, os.path.join('@prefix@', 'lib',
H A Ddnssec-keymgr.py.in10 import os
13 sys.path.insert(0, os.path.dirname(sys.argv[0]))
14 if os.name != 'nt':
18 sys.path.insert(1, os.path.join('@prefix@', 'lib',
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/
H A Dconfig.sub123 os=-$maybe_os
129 then os=`echo $1 | sed 's/.*-/-/'`
130 else os=; fi
138 case $os in
139 -sun*os*)
149 os=
153 os=
159 os=-vxworks
163 os=-chorusos
167 os
[all...]
/bind-9.11.3/contrib/idn/idnkit-1.0-src/
H A Dconfig.sub121 os=-$maybe_os
127 then os=`echo $1 | sed 's/.*-/-/'`
128 else os=; fi
136 case $os in
137 -sun*os*)
147 os=
151 os=
157 os=-vxworks
161 os=-chorusos
165 os
[all...]
/bind-9.11.3/lib/dns/rdata/generic/
H A Dhinfo_13.h18 char *os; member in struct:dns_rdata_hinfo
H A Dhinfo_13.c113 return (mem_tobuffer(target, hinfo->os, hinfo->os_len));
139 hinfo->os = mem_maybedup(mctx, region.base, hinfo->os_len);
140 if (hinfo->os == NULL)
163 if (hinfo->os != NULL)
164 isc_mem_free(hinfo->mctx, hinfo->os);
/bind-9.11.3/unit/atf-src/admin/
H A Dconfig.sub122 os=-$maybe_os
126 os=-linux-android
132 then os=`echo $1 | sed 's/.*-/-/'`
133 else os=; fi
141 case $os in
142 -sun*os*)
152 os=
156 os=-cnk
159 os=
165 os
[all...]
/bind-9.11.3/
H A Dconfig.sub123 os=-$maybe_os
127 os=-linux-android
133 then os=`echo $1 | sed 's/.*-/-/'`
134 else os=; fi
142 case $os in
143 -sun*os*)
153 os=
157 os=-cnk
160 os=
166 os
[all...]
/bind-9.11.3/unit/atf-src/tools/
H A Datffile_test.cpp59 std::auto_ptr< std::ofstream > os(new std::ofstream("Atffile"));
60 ATF_REQUIRE(*os);
62 (*os) << "Content-Type: application/X-atf-atffile; version=\"1\"\n\n";
63 return os;
70 std::ofstream os(name);
71 ATF_REQUIRE(os);
72 os.close();
522 std::auto_ptr< std::ofstream > os = new_atffile(); local
523 (*os) << "prop: test-suite = foo\n";
524 (*os) << "t
552 std::auto_ptr< std::ofstream > os = new_atffile(); local
579 std::auto_ptr< std::ofstream > os = new_atffile(); local
592 std::auto_ptr< std::ofstream > os = new_atffile(); local
[all...]
H A Dio_test.cpp76 systembuf_write_data(std::ostream& os, std::size_t length) argument
80 os << ch;
86 os.flush();
118 std::ostream os(&sb);
119 systembuf_write_data(os, length);
315 check_stream(std::ostream& os) argument
320 ATF_REQUIRE(os.good() || (os.bad() && errno == EINTR));
321 os.clear();
H A Dapplication.cpp210 impl::app::usage(std::ostream& os) argument
217 os << ui::format_text_with_tag(std::string(m_prog_name) + " [options]" +
223 os << "Available options:\n";
241 os << ui::format_text_with_tag(opt.m_description, tag, false,
244 os << "\n";
249 os << ui::format_text("For more details please see " + m_manpage +
H A Dmisc_helpers.cpp58 std::ofstream os(path.c_str());
59 if (!os)
61 os.close();
237 std::ofstream os("oldvalue");
238 if (!os)
240 os << 1234;
241 os.close();
H A Dparser.cpp281 write(std::ostream& os, const impl::header_entry& he) argument
291 os << line << "\n";
293 return os;
348 impl::write_headers(const impl::headers_map& hm, std::ostream& os) argument
353 header::write(os, (*ct).second);
357 header::write(os, (*iter).second);
359 os << "\n";
H A Dfs_test.cpp53 std::ofstream os(name);
54 os.close();
64 std::ofstream os("files/reg");
65 os.close();
391 std::ofstream os(p.c_str());
392 os.close();
/bind-9.11.3/lib/isc/win32/
H A Dos.c9 /* $Id: os.c,v 1.8 2007/06/19 23:47:19 tbox Exp $ */
13 #include <isc/os.h>
/bind-9.11.3/bin/confgen/win32/
H A Dos.c9 /* $Id: os.c,v 1.3 2009/06/11 23:47:55 tbox Exp $ */
13 #include <confgen/os.h>
/bind-9.11.3/bin/confgen/unix/
H A Dos.c9 /* $Id: os.c,v 1.3 2009/06/11 23:47:55 tbox Exp $ */
15 #include <confgen/os.h>
/bind-9.11.3/lib/isc/unix/
H A Dos.c9 /* $Id: os.c,v 1.18 2007/06/19 23:47:18 tbox Exp $ */
13 #include <isc/os.h>
/bind-9.11.3/bin/tests/system/chain/ans4/
H A Dans.py14 import os namespace
256 os.remove('ans.pid')
292 pid = os.getpid()
/bind-9.11.3/unit/atf-src/atf-c++/detail/
H A Dfs_test.cpp52 std::ofstream os("files/reg");
53 os.close();
379 std::ofstream os(p.c_str());
380 os.close();
/bind-9.11.3/lib/isc/tests/
H A Disctest.c22 #include <isc/os.h>
/bind-9.11.3/bin/confgen/
H A Dddns-confgen.c46 #include <confgen/os.h>
H A Dkeygen.c34 #include <confgen/os.h>
H A Drndc-confgen.c48 #include <confgen/os.h>

Completed in 111 milliseconds

12