HomeSort by relevance Sort by last modified time
    Searched refs:set_option (Results 1 - 25 of 33) sorted by null

1 2

  /external/parameter-framework/upstream/remote-processor/
RemoteProcessorServer.cpp 62 _acceptor.set_option(ip::tcp::acceptor::reuse_address(true));
63 _acceptor.set_option(asio::socket_base::linger(true, 0));
64 _acceptor.set_option(socket_base::enable_connection_aborted(true));
91 _socket.set_option(asio::ip::tcp::no_delay(true));
  /toolchain/binutils/binutils-2.25/gas/config/
tc-pdp11.c 89 set_option (char *arg)
179 set_option ("all-extensions");
180 set_option ("pic");
1095 set_option ("no-extensions");
1103 return set_option ("eis") && set_option ("spl");
1107 return set_option ("limited-eis");
1117 return set_option ("eis") && set_option ("mxps");
1125 return set_option ("limited-eis") && set_option ("mxps")
88 set_option (char *arg) function
    [all...]
  /external/autotest/client/cros/
dhcp_unittest.py 150 discovery_message.set_option(
156 request_message.set_option(
204 request_message.set_option(
207 request_message.set_option(
210 request_message.set_option(
213 request_message.set_option(
dhcp_packet.py 525 packet.set_option(OPTION_DHCP_MESSAGE_TYPE,
553 packet.set_option(OPTION_DHCP_MESSAGE_TYPE,
575 packet.set_option(OPTION_DHCP_MESSAGE_TYPE,
599 packet.set_option(OPTION_DHCP_MESSAGE_TYPE,
626 packet.set_option(OPTION_DHCP_MESSAGE_TYPE,
739 def set_option(self, option, option_value): member in class:DhcpPacket
  /external/ltp/testcases/kernel/hotplug/memory_hotplug/
memtoy.h 74 #define set_option(OPT) gcp->options |= (OPTION_##OPT) macro
memtoy.c 379 set_option(INTERACTIVE);
415 set_option(VERBOSE);
  /external/parameter-framework/upstream/asio/stub/
asio.hpp 48 void set_option(const dummy_base &) const {}; function in struct:asio::dummy_base
  /external/e2fsprogs/lib/ext2fs/
io_manager.c 33 if (!channel->manager->set_option)
51 retval = (channel->manager->set_option)(channel, ptr, arg);
ext2_io.h 86 errcode_t (*set_option)(io_channel channel, const char *option, member in struct:struct_io_manager
test_io.c 444 fprintf(data->outfile, "Test_io: set_option(%s, %s) ",
446 if (data->real && data->real->manager->set_option) {
447 retval = (data->real->manager->set_option)(data->real,
542 .set_option = test_set_option,
sparse_io.c 514 .set_option = sparse_set_option,
533 .set_option = sparse_set_option,
undo_io.c 1054 if (data->real && data->real->manager->set_option) {
1055 retval = data->real->manager->set_option(data->real,
1095 .set_option = undo_set_option,
  /external/iptables/iptables/
xtables-arp.c 782 set_option(unsigned int *options, unsigned int option, u_int16_t *invflg, function
1093 set_option(&options, OPT_S_IP, &cs.fw.arp.invflags,
1100 set_option(&options, OPT_D_IP, &cs.fw.arp.invflags,
1107 set_option(&options, OPT_S_MAC, &cs.fw.arp.invflags,
1117 set_option(&options, OPT_D_MAC, &cs.fw.arp.invflags,
1128 set_option(&options, OPT_H_LENGTH, &cs.fw.arp.invflags,
1145 set_option(&options, OPT_P_LENGTH, &cs.fw.arp.invflags,
1155 set_option(&options, OPT_OPCODE, &cs.fw.arp.invflags,
1172 set_option(&options, OPT_H_TYPE, &cs.fw.arp.invflags,
1184 set_option(&options, OPT_P_TYPE, &cs.fw.arp.invflags
    [all...]
xtables.c 388 set_option(unsigned int *options, unsigned int option, uint8_t *invflg, function
612 set_option(&cs->options, OPT_JUMP, &cs->fw.ip.invflags, cs->invert);
882 set_option(&cs->options, OPT_PROTOCOL,
902 set_option(&cs->options, OPT_SOURCE,
908 set_option(&cs->options, OPT_DESTINATION,
915 set_option(&cs->options, OPT_JUMP, &args->invflags,
932 set_option(&cs->options, OPT_VIANAMEIN,
944 set_option(&cs->options, OPT_VIANAMEOUT,
957 set_option(&cs->options, OPT_FRAGMENT, &args->invflags,
964 set_option(&cs->options, OPT_VERBOSE
    [all...]
iptables.c 430 set_option(unsigned int *options, unsigned int option, uint8_t *invflg, function
    [all...]
ip6tables.c 445 set_option(unsigned int *options, unsigned int option, uint8_t *invflg, function
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket_acceptor.hpp 44 * acceptor.set_option(asio::ip::tcp::acceptor::reuse_address(true));
127 * acceptor.set_option(socket_base::reuse_address(true));
142 this->get_service().set_option(this->get_implementation(),
144 asio::detail::throw_error(ec, "set_option");
559 * acceptor.set_option(option);
563 void set_option(const SettableSocketOption& option) function in class:asio::basic_socket_acceptor
566 this->get_service().set_option(this->get_implementation(), option, ec);
567 asio::detail::throw_error(ec, "set_option");
589 * acceptor.set_option(option, ec);
597 asio::error_code set_option(const SettableSocketOption& option function in class:asio::basic_socket_acceptor
    [all...]
basic_socket.hpp 792 * socket.set_option(option);
796 void set_option(const SettableSocketOption& option) function in class:asio::basic_socket
799 this->get_service().set_option(this->get_implementation(), option, ec);
800 asio::detail::throw_error(ec, "set_option");
835 * socket.set_option(option, ec);
843 asio::error_code set_option(const SettableSocketOption& option, function in class:asio::basic_socket
846 return this->get_service().set_option(
    [all...]
socket_acceptor_service.hpp 166 asio::error_code set_option(implementation_type& impl, function in class:asio::socket_acceptor_service
169 return service_impl_.set_option(impl, option, ec);
stream_socket_service.hpp 201 asio::error_code set_option(implementation_type& impl, function in class:asio::stream_socket_service
204 return service_impl_.set_option(impl, option, ec);
  /hardware/interfaces/tv/cec/1.0/default/
HdmiCec.cpp 359 mDevice->set_option(mDevice, static_cast<int>(key), value ? 1 : 0);
373 mDevice->set_option(mDevice, HDMI_OPTION_SET_LANG, convertedLanguage);
  /hardware/libhardware/include/hardware/
hdmi_cec.h 189 * Flags used for set_option()
389 * (*set_option)() passes flags controlling the way HDMI-CEC service works down
393 void (*set_option)(const struct hdmi_cec_device* dev, int flag, int value); member in struct:hdmi_cec_device
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
opts.h 341 extern void set_option (struct gcc_options *opts,
  /external/regex-re2/re2/testing/
tester.cc 253 o.set_option(PCRE::UTF8);
255 o.set_option(PCRE::None);
  /external/ltp/utils/ffsb-6.0-rc2/
parser.c 320 static int set_option(char *buf, config_options_t * options) function
435 is_option = set_option(buf, options);
583 is_option = set_option(buf, profile_conf->global);

Completed in 1589 milliseconds

1 2