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

1 2

  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
Engine.java 82 private final String serviceName;
124 this.serviceName = service;
146 throw notFound(serviceName, algorithm);
148 String name = this.serviceName + "." + algorithm.toUpperCase(Locale.US);
151 throw notFound(serviceName, algorithm);
168 Provider.Service service = provider.getService(serviceName, algorithm);
170 throw notFound(serviceName, algorithm);
175 private NoSuchAlgorithmException notFound(String serviceName, String algorithm)
177 throw new NoSuchAlgorithmException(serviceName + " " + algorithm
  /external/webkit/Source/WebKit2/PluginProcess/qt/
PluginProcessMainQt.cpp 46 String serviceName = commandLine["servicename"];
47 if (serviceName.isEmpty())
  /external/webkit/Source/WebKit2/PluginProcess/mac/
PluginProcessMainMac.mm 57 String serviceName = commandLine["servicename"];
58 if (serviceName.isEmpty())
63 kern_return_t kr = bootstrap_look_up2(bootstrap_port, serviceName.utf8().data(), &serverPort, 0, 0);
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepClient.java 53 public SnepClient(String serviceName) {
54 mServiceName = serviceName;
60 SnepClient(String serviceName, int fragmentLength) {
61 mServiceName = serviceName;
67 SnepClient(String serviceName, int acceptableLength, int fragmentLength) {
68 mServiceName = serviceName;
SnepServer.java 64 public SnepServer(String serviceName, int serviceSap, Callback callback) {
66 mServiceName = serviceName;
71 SnepServer(String serviceName, int serviceSap, int fragmentLength, Callback callback) {
73 mServiceName = serviceName;
  /external/webkit/Source/WebKit2/WebProcess/mac/
WebProcessMainMac.mm 63 String serviceName = commandLine["servicename"];
64 if (serviceName.isEmpty())
69 kern_return_t kr = bootstrap_look_up2(bootstrap_port, serviceName.utf8().data(), &serverPort, 0, 0);
  /external/chromium/chrome/browser/
keychain_mac.cc 66 const char *serviceName,
74 serviceName,
89 const char *serviceName,
97 serviceName,
keychain_mac.h 64 const char *serviceName,
76 const char *serviceName,
keychain_mock_mac.h 63 const char *serviceName,
73 const char *serviceName,
  /packages/apps/Nfc/src/com/android/nfc/nxp/
NativeLlcpSocket.java 45 public void connectToService(String serviceName) throws IOException {
46 if (!doConnectBy(serviceName)) {
  /packages/experimental/AndroidVendorSecurityTool/src/com/google/android/googlelogin/
GoogleAppsVerifier.java 62 * @param serviceName The service name as in the Google Apps manifest.
65 public static boolean isServiceAvailable(Context context, String serviceName) {
79 if (!TextUtils.isEmpty(name) && name.equals(serviceName)) {
  /libcore/luni/src/main/java/java/security/
Provider.java 576 String serviceName;
584 serviceName = service_alias.substring(0, i);
587 propertyAliasTable.remove(serviceName, aliasName.toUpperCase(Locale.US));
608 serviceName = k.substring(0, j);
611 Provider.Service ser = propertyServiceTable.remove(serviceName,
616 propertyAliasTable.remove(serviceName, alias.toUpperCase(Locale.US));
624 serviceName = k.substring(0, j);
627 Object o = propertyServiceTable.get(serviceName, algorithm.toUpperCase(Locale.US));
641 String serviceName;
667 serviceName = service_alias.substring(0, i)
    [all...]
Security.java 360 * @param serviceName
364 * serviceName} is {@code null} or if no registered provider
367 public static Set<String> getAlgorithms(String serviceName) {
370 if (serviceName == null) {
375 if (service.getType().equalsIgnoreCase(serviceName)) {
  /external/ppp/pppd/plugins/rp-pppoe/
discovery.c 133 if (conn->serviceName && len == strlen(conn->serviceName) &&
134 !strncmp((char *) data, conn->serviceName, len)) {
252 if (conn->serviceName) {
253 namelen = (UINT16_t) strlen(conn->serviceName);
272 if (conn->serviceName) {
273 memcpy(svc->payload, conn->serviceName, strlen(conn->serviceName));
322 pc.serviceNameOK = (conn->serviceName) ? 0 : 1;
423 if (conn->serviceName) {
    [all...]
pppoe-discovery.c 42 conn->serviceName = xstrdup(optarg);
  /system/extras/tests/binder/benchmarks/
binderAddInts.cpp 59 String16 serviceName("test.binderAddInts");
229 if ((rv = sm->addService(serviceName,
231 cerr << "addService " << serviceName << " failed, rv: " << rv
252 binder = sm->getService(serviceName);
254 cout << serviceName << " not published, waiting..." << endl;
  /frameworks/base/services/java/com/android/server/location/
GeocoderProxy.java 47 public GeocoderProxy(Context context, String serviceName) {
49 mIntent = new Intent(serviceName);
  /external/qemu/android/
hw-qemud.h 136 extern QemudService* qemud_service_register( const char* serviceName,
  /packages/apps/Nfc/tests/src/com/android/nfc/
MockLlcpSocket.java 77 public void connectToService(String serviceName) throws IOException {
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
AlgNameMapper.java 42 private static final String[] serviceName = {
149 for (String service : serviceName) {
  /packages/apps/Nfc/jni/
com_android_nfc_NativeLlcpSocket.cpp 170 phNfc_sData_t serviceName;
187 serviceName.buffer = (uint8_t*)e->GetStringUTFChars(sn, NULL);
188 serviceName.length = (uint32_t)e->GetStringUTFLength(sn);
194 &serviceName,
  /packages/apps/Nfc/src/com/android/nfc/
DeviceHost.java 126 public void connectToService(String serviceName) throws IOException;
  /packages/apps/Music/src/com/android/music/
MediaAppWidgetProvider.java 177 final ComponentName serviceName = new ComponentName(context, MediaPlaybackService.class);
192 intent.setComponent(serviceName);
198 intent.setComponent(serviceName);
  /external/webkit/Source/WebKit2/UIProcess/Launcher/mac/
ProcessLauncherMac.mm 215 CString serviceName = String::format("com.apple.WebKit.WebProcess-%d-%p", getpid(), this).utf8();
217 const char* args[] = { [processAppExecutablePath fileSystemRepresentation], frameworkExecutablePath, "-type", processTypeAsString(m_launchOptions.processType), "-servicename", serviceName.data(), "-localization", localization.data(), 0 };
220 kern_return_t kr = bootstrap_register2(bootstrap_port, const_cast<char*>(serviceName.data()), listeningPort, 0);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/
AndroidManifestParser.java 425 String serviceName = getAttributeValue(attributes, AndroidManifest.ATTRIBUTE_NAME,
427 if (serviceName != null) {
428 serviceName = AndroidManifest.combinePackageAndClassName(mManifestData.mPackage,
429 serviceName);
432 mErrorHandler.checkClass(mLocator, serviceName, superClassName,

Completed in 713 milliseconds

1 2