HomeSort by relevance Sort by last modified time
    Searched refs:get_option (Results 1 - 18 of 18) sorted by null

  /device/linaro/hikey/uefi-tools/
parse-platforms.py 37 def get_option(): function
73 "get": get_option}
  /external/autotest/client/cros/
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)
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))
dhcp_packet.py 733 def get_option(self, option): member in class:DhcpPacket
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
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)
430 self.assertEqual(self.parser.get_option("-s").type, "string")
    [all...]
  /external/python/cpython2/Lib/test/
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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
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)
430 self.assertEqual(self.parser.get_option("-s").type, "string"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
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)
430 self.assertEqual(self.parser.get_option("-s").type, "string"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
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)
430 self.assertEqual(self.parser.get_option("-s").type, "string"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
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)
430 self.assertEqual(self.parser.get_option("-s").type, "string"
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket.hpp 881 * 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(
    [all...]
basic_socket_acceptor.hpp 622 * 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(
    [all...]
socket_acceptor_service.hpp 174 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);
stream_socket_service.hpp 209 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/
dhcp.c 150 #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(ifp->ctx, dhcp, DHO_ROUTER, &len)
    [all...]
  /external/fio/
parse.c 948 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/
pngcp.c 736 get_option(struct display *dp, const char *opt, int *value) function
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactive_socket_service.hpp 156 asio::error_code get_option(const implementation_type& impl, function in class:asio::detail::reactive_socket_service

Completed in 1364 milliseconds