HomeSort by relevance Sort by last modified time
    Searched defs:spn (Results 1 - 19 of 19) sorted by null

  /external/curl/lib/
http_negotiate.c 64 /* Generate our SPN */
65 char *spn = Curl_sasl_build_gssapi_spn( local
69 if(!spn)
72 /* Populate the SPN structure */
73 spn_token.value = spn;
74 spn_token.length = strlen(spn);
76 /* Import the SPN */
83 free(spn);
88 free(spn);
curl_sasl_gssapi.c 46 * This is used to build a SPN string in the format service@host.
53 * Returns a pointer to the newly allocated SPN.
57 /* Generate and return our SPN */
107 /* Generate our SPN */
108 char *spn = Curl_sasl_build_gssapi_spn(service, local
110 if(!spn)
113 /* Populate the SPN structure */
114 spn_token.value = spn;
115 spn_token.length = strlen(spn);
117 /* Import the SPN */
    [all...]
curl_sasl_sspi.c 52 * This is used to build a SPN string in the format service/host.
59 * Returns a pointer to the newly allocated SPN.
71 formulate the SPN instead. */
73 /* Allocate our UTF8 based SPN */
79 /* Allocate our TCHAR based SPN */
90 /* Return our newly allocated SPN */
122 TCHAR *spn = NULL; local
176 /* Generate our SPN */
177 spn = Curl_sasl_build_spn(service, data->easy_conn->host.name);
178 if(!spn) {
    [all...]
curl_sasl.c 266 * This is used to build a SPN string in the format service/host.
273 * Returns a pointer to the newly allocated SPN.
277 /* Generate and return our SPN */
607 char *spn = NULL; local
672 /* Generate our SPN */
673 spn = Curl_sasl_build_spn(service, realm);
674 if(!spn)
680 free(spn);
688 Curl_MD5_update(ctxt, (const unsigned char *) spn,
689 curlx_uztoui(strlen(spn)));
    [all...]
urldata.h 416 TCHAR *spn; member in struct:kerberos5data
423 gss_name_t spn;
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
CarrierText.java 162 String spn = ""; local
165 spn = i.getStringExtra(TelephonyIntents.EXTRA_SPN);
170 if (DEBUG) Log.d(TAG, "Getting plmn/spn sticky brdcst " + plmn + "/" + spn);
171 if (Objects.equals(plmn, spn)) {
174 text = concatenate(plmn, spn);
223 * and SPN as well as device capabilities, such as being emergency call capable.
227 * @param spn
326 private static CharSequence concatenate(CharSequence plmn, CharSequence spn) {
328 final boolean spnValid = !TextUtils.isEmpty(spn);
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
NetworkControllerSignalTest.java 295 expectedMNetworkName /* spn */,
308 "NotTest" /* spn */,
319 "Irrelevant" /* spn */,
333 null /* spn */,
345 String spn = "Test1"; local
349 spn /* spn */,
358 + spn);
361 private Intent createStringsUpdatedIntent(boolean showSpn, String spn,
368 intent.putExtra(TelephonyIntents.EXTRA_SPN, spn);
    [all...]
  /external/webrtc/webrtc/base/
httpcommon.cc 870 char out_buf[MAX_MESSAGE], spn[MAX_SPN]; local
876 0, &len, spn) != ERROR_SUCCESS) {
881 sprintfn(spn, MAX_SPN, "HTTP/%s", server.ToString().c_str());
937 ret = InitializeSecurityContextA(&neg->cred, &neg->ctx, spn, flags, 0, SECURITY_NATIVE_DREP, &in_buf_desc, 0, &neg->ctx, &out_buf_desc, &ret_flags, &lifetime);
1014 ret = InitializeSecurityContextA(&cred, 0, spn, flags, 0, SECURITY_NATIVE_DREP, 0, 0, &ctx, &out_buf_desc, &ret_flags, &lifetime);
  /packages/services/Telephony/src/com/android/phone/
CarrierConfigLoader.java 417 String spn = TelephonyManager.from(mContext).getSimOperatorNameForPhone(phoneId); local
431 return new CarrierIdentifier(mcc, mnc, spn, imsi, gid1, gid2);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
RuimRecords.java 320 String spn = new String(spnData, 0, numBytes, "US-ASCII"); local
323 // SPN is checked to have characters in printable ASCII
326 if (TextUtils.isPrintableAsciiOnly(spn)) {
327 setServiceProviderName(spn);
329 if (DBG) log("Some corruption in SPN decoding = " + spn);
339 log("SPN encoding not supported");
342 log("spn decode error: " + e);
344 if (DBG) log("spn=" + getServiceProviderName());
873 // TODO together with spn
    [all...]
SIMRecords.java 1780 final String spn = getServiceProviderName(); local
1788 mParentApp.getPhoneId(), spn); local
1814 final String spn = getServiceProviderName(); local
1824 mParentApp.getPhoneId(), spn); local
1846 final String spn = getServiceProviderName(); local
1856 mParentApp.getPhoneId(), spn); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RIL.java 4338 String spn = null, imsi = null, gid1 = null, gid2 = null; local
    [all...]
ServiceStateTracker.java 261 /** Keep track of SPN display rules, so we only broadcast intent if something changes. */
342 // displayed on the UI again. The old SPN update intents sent to
702 * combined roaming is true when roaming is true and ONS differs SPN
723 * combined roaming is true when roaming is true and ONS differs SPN
2176 String spn = (iccRecords != null) ? iccRecords.getServiceProviderName() : ""; local
3470 String spn = ((TelephonyManager) mPhone.getContext(). local
    [all...]
  /external/robolectric/v3/runtime/
android-all-5.1.1_r9-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-4.4_r1-robolectric-1.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 1379 milliseconds