HomeSort by relevance Sort by last modified time
    Searched defs:on (Results 26 - 50 of 190) sorted by null

12 3 4 5 6 7 8

  /art/runtime/jdwp/
jdwp_socket.cc 11 * distributed under the License is distributed on an "AS IS" BASIS,
94 LOG(INFO) << "JDWP will wait for debugger on port " << port;
96 LOG(INFO) << "JDWP will " << (options->server ? "listen" : "connect") << " on port " << port;
112 * Returns 0 on success.
198 int on = 1; local
199 int cc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
227 // When we call shutdown() on the socket, accept() returns with
248 VLOG(jdwp) << "Setting TCP_NODELAY on accepted socket";
345 * Returns "false" on error (indicating that the connection has been severed)
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
GeneralNameTest.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
76 OtherName on = local
78 byte[] encoding = OtherName.ASN1.encode(on);
81 GeneralName gn = new GeneralName(on);
  /external/emma/core/java12/com/vladium/emma/data/
mergeCommand.java 80 final String on = opt.getCanonicalName (); local
84 if ("in".equals (on))
88 else if ("out".equals (on))
  /external/emma/core/java12/com/vladium/emma/instr/
instrCommand.java 82 final String on = opt.getCanonicalName (); local
86 if ("ip".equals (on))
90 else if ("d".equals (on))
94 else if ("out".equals (on))
98 else if ("merge".equals (on))
102 else if ("ix".equals (on))
107 else if ("m".equals (on))
  /external/emma/core/java12/com/vladium/emma/report/
reportCommand.java 82 final String on = opt.getCanonicalName (); local
86 if ("in".equals (on))
90 else if ("sp".equals (on))
94 else if ("r".equals (on))
  /external/netperf/
netserver.c 56 /* way, we insure that it can be installed on systems with or without */
99 /* if you are trying to compile on Windows 2000 or NT 4 you will */
192 /* "schedule" performance tests on the server. */
425 user has specified a port number on the command line or we believe we
442 int on=1; local
476 fprintf(stderr,"Sleeping on getaddrinfo EAI_AGAIN\n");
519 (char *)&on ,
520 sizeof(on)) == SOCKET_ERROR) {
703 /* go away on their own timeframe. */
729 /* we should try to "reap" some of our children. on some *
    [all...]
  /external/stlport/src/
cxa.c 21 significant on unloading (for only few calls, ~10) - ptr */
49 } on; member in union:exit_function::__anon35844
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 115 const unsigned int on = 0xff0000ff; local
119 on, off, on, off, on, off, on, off,
120 off, on, off, on, off, on, off, on,
121 on, off, on, off, on, off, on, off
    [all...]
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_ad.cpp 24 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
133 //-1 means feature is disabled on device
134 // 0 means feature exists but turned off, will be turned on by hwc
135 // 1 means feature is turned on by hwc
136 // Plus, we do this feature only on split primary displays.
199 //Set Security flag on writeback
253 const int on = 1; local
254 adWrite(on);
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_ad.cpp 24 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
101 //-1 means feature is disabled on device
102 // 0 means feature exists but turned off, will be turned on by hwc
103 // 1 means feature is turned on by hwc
104 // Plus, we do this feature only on split primary displays.
174 //Set Security flag on writeback
234 // Only turn on AD if there are no errors during configuration stage
238 const int on = 1; local
239 adWrite(on);
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_ad.cpp 24 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
130 //-1 means feature is disabled on device
131 // 0 means feature exists but turned off, will be turned on by hwc
132 // 1 means feature is turned on by hwc
227 const int on = 1; local
228 adWrite(on);
  /ndk/sources/cxx-stl/stlport/src/
cxa.c 21 significant on unloading (for only few calls, ~10) - ptr */
49 } on; member in union:exit_function::__anon43853
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
debug.rb 30 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
53 # and tree-related code are autloaded on-demand
679 def on( event_name, &block ) method in class:ANTLR3.Debug.EventListener
  /external/chromium_org/components/crash/browser/
crash_handler_host_linux.cc 93 // sending datagrams to other sockets on the system. The sandbox may prevent
96 // a datagram to any (abstract) socket on the same system. With
99 static const int on = 1; local
101 // Enable passcred on the server end of the socket
102 CHECK_EQ(0, setsockopt(fds[1], SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)));
344 // Set |info->distro| here because base::GetLinuxDistro() needs to run on a
  /external/chromium_org/media/audio/android/
audio_manager_android.cc 53 // WARNING: This is executed on the UI loop, do not add any code here which
123 // Use mono as preferred number of input channels on Android to save
124 // resources. Using mono also avoids a driver issue seen on Samsung
243 // shouldUse<Effect>. Only DCHECK on that condition to allow tests to use
302 // Create the Android audio manager on the audio thread.
326 void AudioManagerAndroid::SetCommunicationAudioModeOn(bool on) {
329 j_audio_manager_.obj(), on); local
  /external/chromium_org/net/socket/
tcp_socket_libevent.cc 43 // SetTCPNoDelay turns on/off buffering in the kernel. By default, TCP sockets
48 int on = no_delay ? 1 : 0; local
49 int error = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
55 int on = enable ? 1 : 0; local
56 if (setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof(on))) {
57 PLOG(ERROR) << "Failed to set SO_KEEPALIVE on fd: " << fd;
68 PLOG(ERROR) << "Failed to set TCP_KEEPIDLE on fd: " << fd;
73 PLOG(ERROR) << "Failed to set TCP_KEEPINTVL on fd: " << fd
    [all...]
  /external/chromium_org/third_party/libsrtp/srtp/crypto/include/
err.h 38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
147 int on; /* 1 if debugging is on, 0 if it is off */ member in struct:__anon17444
153 #define debug_on(mod) (mod).on = 1
155 #define debug_off(mod) (mod).on = 0
159 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg)
161 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg1,arg2)
  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_recv_thread.c 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
191 /* This does not yet work on Linux */
1079 const int on = 1; local
1117 SCTPDBG(SCTP_DEBUG_USR, "Can't set timeout on routing socket (errno = %d).\n", errno);
    [all...]
  /external/emma/core/java12/com/vladium/emma/
Command.java 96 final String on = opt.getCanonicalName (); local
98 if ("exit".equals (on)) // 'exit' should always be first in this else-if chain
103 else if ("p".equals (on))
108 else if ("verbose".equals (on))
113 else if ("quiet".equals (on))
118 else if ("silent".equals (on))
123 else if ("debug".equals (on))
132 else if ("debugcls".equals (on))
151 final String on = opt.getName ().substring (opt.getPatternPrefix ().length ()); local
155 cmdOverrides.setProperty (on, opt.getFirstValue ())
    [all...]
runCommand.java 78 final String on = opt.getCanonicalName (); local
82 if ("cp".equals (on))
86 else if ("jar".equals (on))
90 else if ("f".equals (on))
94 else if ("sp".equals (on))
98 else if ("raw".equals (on))
102 else if ("out".equals (on))
106 else if ("merge".equals (on))
110 else if ("r".equals (on))
114 else if ("ix".equals (on))
    [all...]
  /external/iputils/
tftpd.c 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
110 int on = 1; local
112 /* Sanity. If parent forgot to setuid() on us. */
123 if (ioctl(0, FIONBIO, &on) < 0) {
143 * inetd may get one or more successful "selects" on the
481 signal(SIGALRM, justquit); /* just quit on timeout */
tracepath.c 310 int on; local
394 on = IP_PMTUDISC_PROBE;
395 if (setsockopt(fd, SOL_IP, IP_MTU_DISCOVER, &on, sizeof(on)) &&
396 (on = IP_PMTUDISC_DO,
397 setsockopt(fd, SOL_IP, IP_MTU_DISCOVER, &on, sizeof(on)))) {
401 on = 1;
402 if (setsockopt(fd, SOL_IP, IP_RECVERR, &on, sizeof(on))) {
    [all...]
  /external/openssl/crypto/objects/
o_names.c 157 OBJ_NAME on,*ret; local
166 on.name=name;
167 on.type=type;
171 ret=lh_OBJ_NAME_retrieve(names_lh,&on);
176 on.name=ret->data;
235 OBJ_NAME on,*ret; local
240 on.name=name;
241 on.type=type;
242 ret=lh_OBJ_NAME_delete(names_lh,&on);
  /external/qemu/util/
qemu-sockets-android.c 34 static const int on=1, off=0; variable
142 /* listen on both ipv4 and ipv6 */
181 qemu_opt_set(opts, "ipv6", (e->family == SOCKET_IN6) ? "on" : "off");
182 qemu_opt_set(opts, "ipv4", (e->family != SOCKET_IN6) ? "on" : "off");
392 qemu_opt_set(opts, "ipv6", "on");
400 qemu_opt_set(opts, "ipv4", "on");
418 qemu_opt_set(opts, "ipv4", "on");
420 qemu_opt_set(opts, "ipv6", "on");
600 fprintf(stderr, "unix sockets are not available on windows\n");
606 fprintf(stderr, "unix sockets are not available on windows\n")
    [all...]
qemu-sockets.c 30 static const int on=1, off=0; variable
183 qemu_setsockopt(slisten,SOL_SOCKET,SO_REUSEADDR,(void*)&on,sizeof(on));
186 /* listen on both ipv4 and ipv6 */
226 qemu_opt_set(opts, "ipv6", (e->ai_family == PF_INET6) ? "on" : "off");
227 qemu_opt_set(opts, "ipv4", (e->ai_family != PF_INET6) ? "on" : "off");
287 qemu_setsockopt(sock,SOL_SOCKET,SO_REUSEADDR,(void*)&on,sizeof(on));
380 qemu_setsockopt(sock,SOL_SOCKET,SO_REUSEADDR,(void*)&on,sizeof(on));
    [all...]

Completed in 1171 milliseconds

12 3 4 5 6 7 8