Searched defs:serviceName (Results 1 - 25 of 30) sorted by relevance

12

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DPacketServiceAccept.java19 String serviceName; field in class:PacketServiceAccept
21 public PacketServiceAccept(String serviceName) argument
23 this.serviceName = serviceName;
39 serviceName = "";
43 serviceName = tr.readString();
53 tw.writeString(serviceName);
H A DPacketServiceRequest.java19 String serviceName; field in class:PacketServiceRequest
21 public PacketServiceRequest(String serviceName) argument
23 this.serviceName = serviceName;
39 serviceName = tr.readString();
51 tw.writeString(serviceName);
H A DPacketUserauthRequestInteractive.java18 String serviceName; field in class:PacketUserauthRequestInteractive
21 public PacketUserauthRequestInteractive(String serviceName, String user, String[] submethods) argument
23 this.serviceName = serviceName;
35 tw.writeString(serviceName);
H A DPacketUserauthRequestNone.java20 String serviceName; field in class:PacketUserauthRequestNone
22 public PacketUserauthRequestNone(String serviceName, String user) argument
24 this.serviceName = serviceName;
41 serviceName = tr.readString();
59 tw.writeString(serviceName);
H A DPacketUserauthRequestPassword.java20 String serviceName; field in class:PacketUserauthRequestPassword
23 public PacketUserauthRequestPassword(String serviceName, String user, String pass) argument
25 this.serviceName = serviceName;
43 serviceName = tr.readString();
63 tw.writeString(serviceName);
H A DPacketUserauthRequestPublicKey.java20 String serviceName; field in class:PacketUserauthRequestPublicKey
26 public PacketUserauthRequestPublicKey(String serviceName, String user, argument
29 this.serviceName = serviceName;
59 tw.writeString(serviceName);
/external/chromium_org/crypto/
H A Dmock_apple_keychain.cc14 const char* serviceName,
45 const char* serviceName,
11 FindGenericPassword( CFTypeRef keychainOrArray, UInt32 serviceNameLength, const char* serviceName, UInt32 accountNameLength, const char* accountName, UInt32* passwordLength, void** passwordData, SecKeychainItemRef* itemRef) const argument
42 AddGenericPassword( SecKeychainRef keychain, UInt32 serviceNameLength, const char* serviceName, UInt32 accountNameLength, const char* accountName, UInt32 passwordLength, const void* passwordData, SecKeychainItemRef* itemRef) const argument
/external/smack/asmack-master/static-src/custom/org/jivesoftware/smack/
H A DAndroidConnectionConfiguration.java29 * @param serviceName the name of the service provided by an XMPP server.
31 public AndroidConnectionConfiguration(String serviceName) throws XMPPException { argument
33 AndroidInit(serviceName, DEFAULT_TIMEOUT);
38 * @param serviceName
42 public AndroidConnectionConfiguration(String serviceName, int timeout) throws XMPPException { argument
44 AndroidInit(serviceName, timeout);
71 * @param serviceName
75 private void AndroidInit(String serviceName, int timeout) throws XMPPException { argument
78 String serviceName;
81 public DnsSrvLookupRunnable(String serviceName) {
[all...]
/external/smack/src/org/jivesoftware/smack/
H A DAndroidConnectionConfiguration.java29 * @param serviceName the name of the service provided by an XMPP server.
31 public AndroidConnectionConfiguration(String serviceName) throws XMPPException { argument
33 AndroidInit(serviceName, DEFAULT_TIMEOUT);
38 * @param serviceName
42 public AndroidConnectionConfiguration(String serviceName, int timeout) throws XMPPException { argument
44 AndroidInit(serviceName, timeout);
71 * @param serviceName
75 private void AndroidInit(String serviceName, int timeout) throws XMPPException { argument
78 String serviceName;
81 public DnsSrvLookupRunnable(String serviceName) {
[all...]
H A DXMPPConnection.java111 * <tt>serviceName</tt> with the default port of 5222. Encrypted connections (TLS)
126 * @param serviceName the name of the XMPP server to connect to; e.g. <tt>example.com</tt>.
129 public XMPPConnection(String serviceName, CallbackHandler callbackHandler) { argument
131 super(new ConnectionConfiguration(serviceName));
144 * @param serviceName the name of the XMPP server to connect to; e.g. <tt>example.com</tt>.
146 public XMPPConnection(String serviceName) { argument
148 super(new ConnectionConfiguration(serviceName));
235 // Update the serviceName with the one returned by the server
305 // Update the serviceName with the one returned by the server
H A DConnectionConfiguration.java49 * talk.google.com and the serviceName would be gmail.com.
51 private String serviceName; field in class:ConnectionConfiguration
103 * @param serviceName the name of the service provided by an XMPP server.
105 public ConnectionConfiguration(String serviceName) { argument
107 hostAddresses = DNSUtil.resolveXMPPDomain(serviceName);
108 init(serviceName, ProxyInfo.forDefaultProxy());
124 * @param serviceName the name of the service provided by an XMPP server.
127 public ConnectionConfiguration(String serviceName,ProxyInfo proxy) { argument
129 hostAddresses = DNSUtil.resolveXMPPDomain(serviceName);
130 init(serviceName, prox
147 ConnectionConfiguration(String host, int port, String serviceName) argument
167 ConnectionConfiguration(String host, int port, String serviceName, ProxyInfo proxy) argument
197 init(String serviceName, ProxyInfo proxy) argument
226 setServiceName(String serviceName) argument
[all...]
/external/chromium/chrome/browser/
H A Dkeychain_mac.cc66 const char *serviceName,
74 serviceName,
89 const char *serviceName,
97 serviceName,
64 FindGenericPassword(CFTypeRef keychainOrArray, UInt32 serviceNameLength, const char *serviceName, UInt32 accountNameLength, const char *accountName, UInt32 *passwordLength, void **passwordData, SecKeychainItemRef *itemRef) const argument
87 AddGenericPassword(SecKeychainRef keychain, UInt32 serviceNameLength, const char *serviceName, UInt32 accountNameLength, const char *accountName, UInt32 passwordLength, const void *passwordData, SecKeychainItemRef *itemRef) const argument
H A Dkeychain_mock_mac.cc341 const char *serviceName,
371 const char *serviceName,
339 FindGenericPassword(CFTypeRef keychainOrArray, UInt32 serviceNameLength, const char *serviceName, UInt32 accountNameLength, const char *accountName, UInt32 *passwordLength, void **passwordData, SecKeychainItemRef *itemRef) const argument
369 AddGenericPassword(SecKeychainRef keychain, UInt32 serviceNameLength, const char *serviceName, UInt32 accountNameLength, const char *accountName, UInt32 passwordLength, const void *passwordData, SecKeychainItemRef *itemRef) const argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DContextWrapperTest.java171 private void assertSameInstanceEveryTime(String serviceName) { argument
173 assertThat(activity.getSystemService(serviceName), sameInstance(activity.getSystemService(serviceName)));
175 assertThat(activity.getSystemService(serviceName), sameInstance(new Activity().getSystemService(serviceName)));
/external/ppp/pppd/plugins/rp-pppoe/
H A Dpppoe.h259 char *serviceName; /* Desired service name, if any */ member in struct:PPPoEConnectionStruct
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dicusvtst.cpp960 UnicodeString serviceName = "listener "; local
961 serviceName.append(_name);
962 serviceName.append(" n++");
963 serviceName.append(" service changed: " );
964 service.getName(serviceName);
965 _test->logln(serviceName);
/external/icu4c/test/intltest/
H A Dicusvtst.cpp960 UnicodeString serviceName = "listener "; local
961 serviceName.append(_name);
962 serviceName.append(" n++");
963 serviceName.append(" service changed: " );
964 service.getName(serviceName);
965 _test->logln(serviceName);
/external/smack/src/org/jivesoftware/smackx/muc/
H A DMultiUserChat.java280 * @param serviceName the service that is hosting the rooms to discover.
284 public static Collection<HostedRoom> getHostedRooms(Connection connection, String serviceName) argument
288 DiscoverItems items = discoManager.discoverItems(serviceName);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.event_1.2.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.update.configurator_3.3.100.v20100512.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.engine_2.0.0.v20100606.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...

Completed in 691 milliseconds

12