Searched refs:get_option (Results 1 - 18 of 18) sorted by relevance

/external/autotest/client/cros/
H A Ddhcp_handling_rule.py316 requested_parameters = query_packet.get_option(
397 server_ip = query_packet.get_option(dhcp_packet.OPTION_SERVER_ID)
398 requested_ip = query_packet.get_option(dhcp_packet.OPTION_REQUESTED_IP)
436 requested_parameters = query_packet.get_option(
478 if query_packet.get_option(dhcp_packet.OPTION_SERVER_ID) is not None:
483 requested_ip = query_packet.get_option(dhcp_packet.OPTION_REQUESTED_IP)
529 server_ip = query_packet.get_option(dhcp_packet.OPTION_SERVER_ID)
613 server_ip = query_packet.get_option(dhcp_packet.OPTION_SERVER_ID)
H A Ddhcp_unittest.py206 offer_packet.get_option(dhcp_packet.OPTION_SERVER_ID))
209 offer_packet.get_option(dhcp_packet.OPTION_SUBNET_MASK))
212 offer_packet.get_option(dhcp_packet.OPTION_IP_LEASE_TIME))
215 offer_packet.get_option(dhcp_packet.OPTION_REQUESTED_IP))
H A Ddhcp_packet.py733 def get_option(self, option): member in class:DhcpPacket
/external/python/cpython2/Lib/test/
H A Dtest_optparse.py342 opt1 = self.parser.get_option("-v")
350 opt1 = self.parser.get_option("-v")
351 opt2 = self.parser.get_option("--verbose")
352 opt3 = self.parser.get_option("-n")
353 opt4 = self.parser.get_option("--noisy")
361 self.assertTrue(self.parser.get_option("-v") is None)
362 self.assertTrue(self.parser.get_option("--verbose") is None)
363 self.assertTrue(self.parser.get_option("-n") is None)
364 self.assertTrue(self.parser.get_option("--noisy") is None)
431 self.assertEqual(self.parser.get_option("
[all...]
/external/parameter-framework/asio/include/asio/
H A Dbasic_socket.hpp881 * socket.get_option(option);
886 void get_option(GettableSocketOption& option) const function in class:asio::basic_socket
889 this->get_service().get_option(this->get_implementation(), option, ec);
890 asio::detail::throw_error(ec, "get_option");
925 * socket.get_option(option, ec);
934 asio::error_code get_option(GettableSocketOption& option, function in class:asio::basic_socket
937 return this->get_service().get_option(
H A Dbasic_socket_acceptor.hpp622 * acceptor.get_option(option);
627 void get_option(GettableSocketOption& option) function in class:asio::basic_socket_acceptor
630 this->get_service().get_option(this->get_implementation(), option, ec);
631 asio::detail::throw_error(ec, "get_option");
653 * acceptor.get_option(option, ec);
662 asio::error_code get_option(GettableSocketOption& option, function in class:asio::basic_socket_acceptor
665 return this->get_service().get_option(
H A Dsocket_acceptor_service.hpp174 asio::error_code get_option(const implementation_type& impl, function in class:asio::socket_acceptor_service
177 return service_impl_.get_option(impl, option, ec);
H A Dstream_socket_service.hpp209 asio::error_code get_option(const implementation_type& impl, function in class:asio::stream_socket_service
212 return service_impl_.get_option(impl, option, ec);
/external/parameter-framework/asio-1.10.6/include/asio/
H A Dbasic_socket.hpp881 * socket.get_option(option);
886 void get_option(GettableSocketOption& option) const function in class:asio::basic_socket
889 this->get_service().get_option(this->get_implementation(), option, ec);
890 asio::detail::throw_error(ec, "get_option");
925 * socket.get_option(option, ec);
934 asio::error_code get_option(GettableSocketOption& option, function in class:asio::basic_socket
937 return this->get_service().get_option(
H A Dbasic_socket_acceptor.hpp622 * acceptor.get_option(option);
627 void get_option(GettableSocketOption& option) function in class:asio::basic_socket_acceptor
630 this->get_service().get_option(this->get_implementation(), option, ec);
631 asio::detail::throw_error(ec, "get_option");
653 * acceptor.get_option(option, ec);
662 asio::error_code get_option(GettableSocketOption& option, function in class:asio::basic_socket_acceptor
665 return this->get_service().get_option(
H A Dsocket_acceptor_service.hpp174 asio::error_code get_option(const implementation_type& impl, function in class:asio::socket_acceptor_service
177 return service_impl_.get_option(impl, option, ec);
H A Dstream_socket_service.hpp209 asio::error_code get_option(const implementation_type& impl, function in class:asio::stream_socket_service
212 return service_impl_.get_option(impl, option, ec);
/external/dhcpcd-6.8.2/
H A Ddhcp.c150 #define get_option_raw(ctx, dhcp, opt) get_option(ctx, dhcp, opt, NULL)
152 get_option(struct dhcpcd_ctx *ctx, function
249 p = get_option(ctx, dhcp, option, &len);
264 p = get_option(ctx, dhcp, option, &len);
280 p = get_option(ctx, dhcp, option, &len);
537 p = get_option(ctx, dhcp, option, &len);
594 p = get_option(ifp->ctx, dhcp, DHO_CSR, &len);
599 p = get_option(ifp->ctx, dhcp, DHO_MSCSR, &len);
629 p = get_option(ifp->ctx, dhcp, DHO_STATICROUTE, &len);
659 p = get_option(if
[all...]
/external/fio/
H A Dparse.c948 static struct fio_option *get_option(char *opt, function
980 o = get_option(s, __fio_options, &foo);
987 o = get_option(s, __fio_options, &foo);
1054 *o = get_option(opt, options, &post);
/external/libpng/contrib/tools/
H A Dpngcp.c736 get_option(struct display *dp, const char *opt, int *value) function
2046 if (get_option(dp, "IDAT-size", &val))
2055 if (get_option(dp, "filter", &val))
2192 if (get_option(dp, "log-depth", &val) && val >= 0)
/external/parameter-framework/asio/include/asio/detail/
H A Dreactive_socket_service.hpp156 asio::error_code get_option(const implementation_type& impl, function in class:asio::detail::reactive_socket_service
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dreactive_socket_service.hpp156 asio::error_code get_option(const implementation_type& impl, function in class:asio::detail::reactive_socket_service
/external/python/cpython2/Lib/
H A Doptparse.py1044 def get_option(self, opt_str): member in class:OptionContainer

Completed in 1022 milliseconds