HomeSort by relevance Sort by last modified time
    Searched full:setoption (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /libcore/luni/src/main/java/java/net/
PlainDatagramSocketImpl.java 75 setOption(SocketOptions.SO_BROADCAST, Boolean.TRUE);
126 setOption(IoBridge.JAVA_MCAST_JOIN_GROUP, makeGroupReq(addr, null));
133 setOption(IoBridge.JAVA_MCAST_JOIN_GROUP, makeGroupReq(groupAddr, netInterface));
139 setOption(IoBridge.JAVA_MCAST_LEAVE_GROUP, makeGroupReq(addr, null));
146 setOption(IoBridge.JAVA_MCAST_LEAVE_GROUP, makeGroupReq(groupAddr, netInterface));
185 public void setOption(int option, Object value) throws SocketException {
191 setOption(IoBridge.JAVA_IP_MULTICAST_TTL, Integer.valueOf(ttl));
PlainServerSocketImpl.java 40 setOption(SocketOptions.SO_REUSEADDR, Boolean.TRUE);
Socket.java 405 // The RI explicitly guarantees this idiocy in the SocketOptions.setOption documentation.
452 impl.setOption(SocketOptions.SO_KEEPALIVE, Boolean.valueOf(keepAlive));
481 impl.setOption(SocketOptions.SO_SNDBUF, Integer.valueOf(size));
492 impl.setOption(SocketOptions.SO_RCVBUF, Integer.valueOf(size));
501 // The RI explicitly guarantees this idiocy in the SocketOptions.setOption documentation.
506 impl.setOption(SocketOptions.SO_LINGER, Integer.valueOf(timeout));
508 impl.setOption(SocketOptions.SO_LINGER, Boolean.FALSE);
522 impl.setOption(SocketOptions.SO_TIMEOUT, Integer.valueOf(timeout));
530 impl.setOption(SocketOptions.TCP_NODELAY, Boolean.valueOf(on));
879 impl.setOption(SocketOptions.SO_REUSEADDR, Boolean.valueOf(reuse))
    [all...]
MulticastSocket.java 278 impl.setOption(SocketOptions.IP_MULTICAST_IF2, networkInterface.getIndex());
294 impl.setOption(SocketOptions.IP_MULTICAST_IF2, networkInterface.getIndex());
330 impl.setOption(SocketOptions.SO_REUSEADDR, Boolean.TRUE);
360 impl.setOption(SocketOptions.IP_MULTICAST_LOOP, Boolean.valueOf(!disable));
  /external/collada/include/dae/
daeTinyXMLPlugin.h 38 * setOption allows you to set options for this IOPlugin. Which options a plugin supports is
47 virtual DLLSPEC daeInt setOption( daeString option, daeString value );
daeIOPlugin.h 93 * setOption allows you to set options for this IOPlugin. Which options a plugin supports is
100 virtual daeInt setOption( daeString option, daeString value ) = 0;
123 virtual daeInt setOption( daeString option, daeString value ) { return DAE_ERROR; }
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transportchannelproxy.cc 56 impl_->SetOption(it->first, it->second);
66 int TransportChannelProxy::SetOption(talk_base::Socket::Option opt, int value) {
68 return impl_->SetOption(opt, value);
udpport.cc 93 int UDPPort::SetOption(talk_base::Socket::Option opt, int value) {
94 return socket_->SetOption(opt, value);
transportchannelproxy.h 56 virtual int SetOption(talk_base::Socket::Option opt, int value);
udpport.h 66 virtual int SetOption(talk_base::Socket::Option opt, int value);
  /external/collada/include/modules/
daeLIBXMLPlugin.h 46 * setOption allows you to set options for this IOPlugin. Which options a plugin supports is
55 virtual daeInt setOption( daeString option, daeString value );
  /external/icu4c/test/intltest/
tstnrapi.cpp 119 // test setOption() and getOption()
120 copy.setOption(0xaa0000, TRUE);
121 copy.setOption(0x20000, FALSE);
123 errln("error in Normalizer::setOption() or Normalizer::getOption()");
  /external/chromium/third_party/libjingle/source/talk/base/
asyncsocket.h 110 virtual int SetOption(Option opt, int value) {
111 return socket_->SetOption(opt, value);
asyncudpsocket.cc 96 int AsyncUDPSocket::SetOption(Socket::Option opt, int value) {
97 return socket_->SetOption(opt, value);
asynctcpsocket.h 54 virtual int SetOption(Socket::Option opt, int value);
asyncudpsocket.h 56 virtual int SetOption(Socket::Option opt, int value);
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLSelectElementCustom.cpp 58 select->setOption(index, option, ec);
  /frameworks/base/core/java/android/net/
LocalSocket.java 187 impl.setOption(SocketOptions.SO_RCVBUF, Integer.valueOf(size));
195 impl.setOption(SocketOptions.SO_TIMEOUT, Integer.valueOf(n));
203 impl.setOption(SocketOptions.SO_SNDBUF, Integer.valueOf(n));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/
Mocks.java 96 javaProject.setOption(eq(JavaCore.COMPILER_COMPLIANCE), capture(capturedCompliance));
98 javaProject.setOption(eq(JavaCore.COMPILER_SOURCE), capture(capturedSource));
100 javaProject.setOption(eq(JavaCore.COMPILER_CODEGEN_TARGET_PLATFORM),
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/
shell.js 353 jsOptions.setOption(name, boolean);
427 JavaScriptOptions.prototype.setOption =
446 throw 'setOption: unable to get @mozilla.org/preference;1';
454 throw 'setOption: unable to get nsIPrefService';
461 throw 'setOption: unable to get prefService branch';
475 this.setOption('strict', this.orig.strict);
476 this.setOption('werror', this.orig.werror);
  /external/webkit/Source/WebCore/bindings/v8/
V8Collection.cpp 56 base->setOption(index, element, ec);
  /frameworks/media/libvideoeditor/osal/inc/
M4OSA_FileReader.h 90 M4OSA_ERR (*setOption) (M4OSA_Context context,
M4OSA_FileWriter.h 86 M4OSA_ERR (*setOption) (M4OSA_Context context,
  /frameworks/base/media/jni/mediaeditor/
VideoEditorOsal.cpp 334 pOsaFileReadPtr->setOption = M4OSA_fileReadSetOption;
346 pOsaFileWritePtr->setOption = M4OSA_fileWriteSetOption;
  /libcore/luni/src/test/java/libcore/java/net/
SocketTest.java 140 // SocketOptions.setOption has weird behavior for setSoLinger/SO_LINGER.
169 public void setOption(int option, Object value) throws SocketException {
184 // Check that, as per the SocketOptions.setOption documentation, we pass false rather

Completed in 760 milliseconds

1 2 3 4 5