/external/autotest/client/cros/ |
D | dhcp_handling_rule.py | 316 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)
|
D | dhcp_unittest.py | 206 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))
|
D | dhcp_packet.py | 733 def get_option(self, option): member in DhcpPacket
|
/external/python/cpython2/Lib/test/ |
D | test_optparse.py | 342 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("-s").type, "string") [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_optparse.py | 355 opt1 = self.parser.get_option("-v") 363 opt1 = self.parser.get_option("-v") 364 opt2 = self.parser.get_option("--verbose") 365 opt3 = self.parser.get_option("-n") 366 opt4 = self.parser.get_option("--noisy") 374 self.assertTrue(self.parser.get_option("-v") is None) 375 self.assertTrue(self.parser.get_option("--verbose") is None) 376 self.assertTrue(self.parser.get_option("-n") is None) 377 self.assertTrue(self.parser.get_option("--noisy") is None) 444 self.assertEqual(self.parser.get_option("-s").type, "string") [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/ |
D | basic_socket_acceptor.hpp | 627 void get_option(GettableSocketOption& option) in get_option() function in asio::basic_socket_acceptor 630 this->get_service().get_option(this->get_implementation(), option, ec); in get_option() 662 asio::error_code get_option(GettableSocketOption& option, in get_option() function in asio::basic_socket_acceptor 665 return this->get_service().get_option( in get_option()
|
D | basic_socket.hpp | 886 void get_option(GettableSocketOption& option) const in get_option() function in asio::basic_socket 889 this->get_service().get_option(this->get_implementation(), option, ec); in get_option() 934 asio::error_code get_option(GettableSocketOption& option, in get_option() function in asio::basic_socket 937 return this->get_service().get_option( in get_option()
|
D | socket_acceptor_service.hpp | 174 asio::error_code get_option(const implementation_type& impl, in get_option() function in asio::socket_acceptor_service 177 return service_impl_.get_option(impl, option, ec); in get_option()
|
D | stream_socket_service.hpp | 209 asio::error_code get_option(const implementation_type& impl, in get_option() function in asio::stream_socket_service 212 return service_impl_.get_option(impl, option, ec); in get_option()
|
/external/dhcpcd-6.8.2/ |
D | dhcp.c | 150 #define get_option_raw(ctx, dhcp, opt) get_option(ctx, dhcp, opt, NULL) 152 get_option(struct dhcpcd_ctx *ctx, in get_option() function 249 p = get_option(ctx, dhcp, option, &len); in get_option_addr() 264 p = get_option(ctx, dhcp, option, &len); in get_option_uint32() 280 p = get_option(ctx, dhcp, option, &len); in get_option_uint8() 537 p = get_option(ctx, dhcp, option, &len); in get_option_string() 594 p = get_option(ifp->ctx, dhcp, DHO_CSR, &len); in get_option_routes() 599 p = get_option(ifp->ctx, dhcp, DHO_MSCSR, &len); in get_option_routes() 629 p = get_option(ifp->ctx, dhcp, DHO_STATICROUTE, &len); in get_option_routes() 659 p = get_option(ifp->ctx, dhcp, DHO_ROUTER, &len); in get_option_routes() [all …]
|
/external/fio/ |
D | parse.c | 948 static struct fio_option *get_option(char *opt, in get_option() function 980 o = get_option(s, __fio_options, &foo); in opt_cmp() 987 o = get_option(s, __fio_options, &foo); in opt_cmp() 1054 *o = get_option(opt, options, &post); in parse_option()
|
/external/libpng/contrib/tools/ |
D | pngcp.c | 736 get_option(struct display *dp, const char *opt, int *value) in get_option() function 2046 if (get_option(dp, "IDAT-size", &val)) in write_png() 2055 if (get_option(dp, "filter", &val)) in write_png() 2192 if (get_option(dp, "log-depth", &val) && val >= 0) in cp_one_file()
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | reactive_socket_service.hpp | 156 asio::error_code get_option(const implementation_type& impl, in get_option() function in asio::detail::reactive_socket_service
|
/external/python/cpython2/Lib/ |
D | optparse.py | 1044 def get_option(self, opt_str): member in OptionContainer
|
/external/python/cpython3/Lib/ |
D | optparse.py | 1031 def get_option(self, opt_str): member in OptionContainer
|
/external/python/cpython3/Doc/library/ |
D | optparse.rst | 1392 .. method:: OptionParser.get_option(opt_str)
|
/external/python/cpython2/Doc/library/ |
D | optparse.rst | 1394 .. method:: OptionParser.get_option(opt_str)
|