HomeSort by relevance Sort by last modified time
    Searched full:server (Results 476 - 500 of 7791) sorted by null

<<11121314151617181920>>

  /external/bluetooth/bluedroid/bta/include/
bta_gatts_co.h 21 * This is the interface file for BTA GATT server call-out functions.
33 ** Description This callout function is executed by GATTS when a GATT server
69 ** Description This callout function is executed by GATTS when a GATT server
  /external/chromium_org/net/http/
http_server_properties_impl.cc 161 const HostPortPair& server) const {
162 return ContainsKey(alternate_protocol_map_, server) ||
168 const HostPortPair& server) const {
169 DCHECK(HasAlternateProtocol(server));
173 alternate_protocol_map_.find(server);
183 const HostPortPair& server,
194 if (HasAlternateProtocol(server)) {
196 GetAlternateProtocol(server);
206 << server.ToString()
215 alternate_protocol_map_[server] = alternate
    [all...]
  /external/chromium_org/net/quic/
quic_crypto_stream.h 20 // reliable stream with the id 1. Each endpoint (client and server)
24 // The server will receive this message and respond with a server
  /external/chromium_org/net/tools/testserver/
testserver_base.py 67 """Allows the server to deal with "broken pipe" errors (which happen if the
166 """Runs a test server and communicates with the controlling C++ test code.
168 Subclasses should override the create_server method to create their server
189 self.server = self.create_server(server_data)
194 """Creates a server object and returns it.
202 self.server.serve_forever()
204 print 'shutting down server'
205 self.server.stop = True
218 help='The name of the server log file.')
220 help='Port used by the server. If
    [all...]
  /external/chromium_org/rlz/lib/
financial_ping.h 5 // Library functions related to the Financial Server ping.
23 // Form the HTTP request to send to the PSO server.
49 // Ping the financial server with request. Writes to RlzValueStore.
  /external/chromium_org/sync/engine/
conflict_resolver.cc 65 // This logic determines "client wins" vs. "server wins" strategy picking.
67 // a) We can decrypt both the local and server data (else we'd be in
79 // functional change must have been made server-side (else
81 // safely ignore the server changes as redundant.
89 // of three options: CLIENT, SERVER, or MERGE. Some datatypes (autofill)
163 DVLOG(1) << "Resolving simple conflict, ignoring server encryption "
177 DVLOG(1) << "Resolving simple conflict, overwriting server changes "
191 // Now that we've resolved the conflict, clear the prev server
200 // If a server deleted folder has local contents it should be a hierarchy
206 // The entry is deleted on the server but still exists locally
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
server_test.html 3 <title>PeerConnection server test page</title>
9 var server;
20 trace("Server notification: " + data);
73 trace("server error: " + hangingGet.statusText);
101 hangingGet.open("GET", server + "/wait?peer_id=" + my_id, true);
143 request.open("GET", server + "/sign_in?" + localName, true);
160 r.open("POST", server + "/message?peer_id=" + my_id + "&to=" + peer_id,
169 server = document.getElementById("server").value.toLowerCase();
194 request.open("GET", server + "/sign_out?peer_id=" + my_id, false)
    [all...]
  /external/javassist/sample/evolve/
demo.html 18 <P>The web server creates a new <code>WebPage</code> object and
25 <P>The web server overwrites class file <code>WebPage.class</code>
32 <P>Web server: <A HREF="DemoServer.java"><code>DemoServer.java</code></A>
  /external/mtpd/
mtpd.h 20 /* The socket to the server. */
43 void create_socket(int family, int type, char *server, char *port);
56 /* Connect to the server and return the next timeout interval. */
  /external/openssh/
OVERVIEW 14 The software consists of ssh (client), sshd (server), scp, sdist, and
88 code is linked into the server. The routines also manipulate
102 sshconnect.c) to open a connection to the server (possibly via a
131 log-server.c; it is used in the server program. The other
135 The sshd server (daemon)
139 starts listening for connections, and generates the server key.
140 The server key will be regenerated every hour by an alarm.
142 - When the server receives a connection, it forks, disables the
146 operations, and finally the server enters the normal sessio
    [all...]
  /external/ppp/pppd/plugins/radius/
pppd-radius.8 21 MS-CHAPv2 authentication against a RADIUS server instead of the usual
45 Adds an Attribute-Value pair to be passed on to the RADIUS server on each request.
60 RADIUS server should assign an IP address to the peer using the RADIUS
  /external/smack/src/org/jivesoftware/smack/
PacketInterceptor.java 26 * sent to the server. PacketInterceptors are added to the {@link Connection}
39 * Process the packet that is about to be sent to the server. The intercepted
46 * @param packet the packet to is going to be sent to the server.
  /external/smack/src/org/jivesoftware/smack/util/
SyncPacketSend.java 25 * Utility class for doing synchronous calls to the server. Provides several
26 * methods for sending a packet to the server and waiting for the reply.
50 throw new XMPPException("No response from server.");
  /external/smack/src/org/jivesoftware/smackx/pubsub/packet/
SyncPacketSend.java 25 * Utility class for doing synchronous calls to the server. Provides several
26 * methods for sending a packet to the server and waiting for the reply.
50 throw new XMPPException("No response from server.");
  /frameworks/base/core/java/android/ddm/
DdmHandleExit.java 46 * Called when the DDM server connects. The handler is allowed to
47 * send messages to the server.
52 * Called when the DDM server disconnects. Can be used to disable
  /frameworks/base/services/java/com/android/server/net/
LockdownVpnTracker.java 17 package com.android.server.net;
44 import com.android.server.ConnectivityService;
45 import com.android.server.EventLogTags;
46 import com.android.server.connectivity.Vpn;
61 private static final String ACTION_LOCKDOWN_RESET = "com.android.server.action.LOCKDOWN_RESET";
162 Slog.e(TAG, "Invalid VPN profile; requires IP-based server and DNS");
216 mNetService.setFirewallEgressDestRule(mProfile.server, 500, true);
217 mNetService.setFirewallEgressDestRule(mProfile.server, 4500, true);
218 mNetService.setFirewallEgressDestRule(mProfile.server, 1701, true);
242 mNetService.setFirewallEgressDestRule(mProfile.server, 500, false)
    [all...]
  /frameworks/base/services/jni/
com_android_server_SerialService.cpp 65 jclass clazz = env->FindClass("com/android/server/SerialService");
67 ALOGE("Can't find com/android/server/SerialService");
78 return jniRegisterNativeMethods(env, "com/android/server/SerialService",
  /libcore/crypto/src/main/java/org/conscrypt/
SSLServerSessionCache.java 23 * {@link javax.net.ssl.SSLSessionContext} to share server-side SSL sessions
24 * across processes. For example, this cache enables one server to resume
25 * a session started by a different server based on a session ID provided
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Flag.java 55 * Indicates that a message is fully downloaded from the server and can be viewed normally.
61 * Indicates that a message is partially downloaded from the server and can be viewed but
62 * more content is available on the server.
  /bionic/libc/private/
resolv_cache.h 48 /* Gets the address of the n:th name server for the default interface
50 * Note: The first name server is at n = 1 */
54 /* Gets the address of the n:th name server for a certain interface
56 * Note: The first name server is at n = 1 */
61 /* Gets addrinfo of the n:th name server associated with an interface.
63 * Note: The first name server is at n = 1. */
67 /* Gets addrinfo of the n:th name server associated with the default interface
69 * Note: The first name server is at n = 1. */
87 /* sets the name server addresses to the provided res_state structure. The
  /build/core/
process_wrapper.sh 4 # command that is executed instead of the server
  /development/samples/KeyChainDemo/src/com/example/android/keychain/
SecureWebServerService.java 34 // A handle to the simple SSL web server
38 * Start the SSL web server and set an on-going notification
49 * Stop the SSL web server and remove the on-going notification
67 * Create an on-going notification. It will stop the server when the user
  /external/chromium/chrome/browser/autofill/
autofill_field_unittest.cc 25 // Set the server type and check it.
29 // Remove the server type to make sure the heuristic type is preserved.
66 // Server type does not affect FieldSignature.
82 // Only server type is set.
field_types.h 17 // NOTE: This list MUST not be modified. The server aggregates and stores these
19 // Autofill server, which is itself backward-compatible. The list must be kept
20 // up to date with the Autofill server list.
24 // Server indication that it has no data for the requested field.
  /external/chromium/chrome/browser/sync/glue/
extension_sync.h 46 // installed extensions and the server-side information about
54 // Updates the server and client as necessary from
65 // Updates the server data for the given extension. Returns true iff
74 // Removes the server data for the given extension ID.

Completed in 1520 milliseconds

<<11121314151617181920>>