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

  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
CarrierText.java 43 public void onRefreshCarrierInfo(CharSequence plmn, CharSequence spn) {
45 mSpn = spn;
88 protected void updateCarrierText(State simState, CharSequence plmn, CharSequence spn) {
89 setText(getCarrierTextForSimState(simState, plmn, spn));
114 * and SPN as well as device capabilities, such as being emergency call capable.
118 * @param spn
122 CharSequence plmn, CharSequence spn) {
127 carrierText = concatenate(plmn, spn);
224 private static CharSequence concatenate(CharSequence plmn, CharSequence spn) {
226 final boolean spnValid = !TextUtils.isEmpty(spn);
    [all...]
KeyguardUpdateMonitorCallback.java 50 * Called when the carrier PLMN or SPN changes.
54 * @param spn The service provider name. May be null if it shouldn't be displayed.
56 void onRefreshCarrierInfo(CharSequence plmn, CharSequence spn) { }
KeyguardUpdateMonitor.java 763 + ", spn = " + mTelephonySpn);
892 final String spn = intent.getStringExtra(TelephonyIntents.EXTRA_SPN); local
    [all...]
  /external/chromium/net/http/
http_auth_handler_negotiate_unittest.cc 232 EXPECT_EQ(L"HTTP/alias", auth_handler->spn());
234 EXPECT_EQ(L"HTTP@alias", auth_handler->spn());
251 EXPECT_EQ(L"HTTP/alias", auth_handler->spn());
253 EXPECT_EQ(L"HTTP@alias", auth_handler->spn());
270 EXPECT_EQ(L"HTTP/alias:500", auth_handler->spn());
272 EXPECT_EQ(L"HTTP@alias:500", auth_handler->spn());
289 EXPECT_EQ(L"HTTP/canonical.example.com", auth_handler->spn());
291 EXPECT_EQ(L"HTTP@canonical.example.com", auth_handler->spn());
308 EXPECT_EQ(L"HTTP/canonical.example.com", auth_handler->spn());
310 EXPECT_EQ(L"HTTP@canonical.example.com", auth_handler->spn());
    [all...]
http_auth_sspi_win.h 138 // Service Principal Name |spn| and stores the value in |*auth_token|.
147 const std::wstring& spn,
159 const std::wstring& spn,
http_auth_sspi_win.cc 255 const std::wstring& spn,
270 spn,
316 const std::wstring& spn,
369 const_cast<wchar_t *>(spn.c_str()), // pszTargetName
http_auth_handler_negotiate.h 52 // generating the SPN. The default value is false.
60 // they are authenticating to when constructing a Kerberos SPN. The default
106 const std::wstring& spn() const { return spn_; } function in class:net::HttpAuthHandlerNegotiate
148 // Members which are needed for DNS lookup + SPN.
http_auth_gssapi_posix.h 233 // |spn| is the Service Principal Name of the server that the token is
240 const std::wstring& spn,
249 int GetNextSecurityToken(const std::wstring& spn,
http_auth_gssapi_posix.cc 714 const std::wstring& spn,
726 int rv = GetNextSecurityToken(spn, &input_token, &output_token);
837 int HttpAuthGSSAPI::GetNextSecurityToken(const std::wstring& spn,
842 std::string spn_principal = WideToASCII(spn);
856 << "spn \"" << spn_principal << "\"\n"
  /external/chromium_org/net/http/
http_auth_handler_negotiate_unittest.cc 229 EXPECT_EQ("HTTP/alias", auth_handler->spn());
231 EXPECT_EQ("HTTP@alias", auth_handler->spn());
247 EXPECT_EQ("HTTP/alias", auth_handler->spn());
249 EXPECT_EQ("HTTP@alias", auth_handler->spn());
265 EXPECT_EQ("HTTP/alias:500", auth_handler->spn());
267 EXPECT_EQ("HTTP@alias:500", auth_handler->spn());
283 EXPECT_EQ("HTTP/canonical.example.com", auth_handler->spn());
285 EXPECT_EQ("HTTP@canonical.example.com", auth_handler->spn());
302 EXPECT_EQ("HTTP/canonical.example.com", auth_handler->spn());
304 EXPECT_EQ("HTTP@canonical.example.com", auth_handler->spn());
    [all...]
http_auth_sspi_win.h 140 // Service Principal Name |spn| and stores the value in |*auth_token|.
147 const std::string& spn,
159 const std::string& spn,
http_auth_sspi_win.cc 258 const std::string& spn,
271 spn,
311 const std::string& spn,
361 std::wstring spn_wide = base::ASCIIToWide(spn);
http_auth_handler_negotiate.h 51 // generating the SPN. The default value is false.
59 // they are authenticating to when constructing a Kerberos SPN. The default
106 const std::string& spn() const { return spn_; } function in class:net::HttpAuthHandlerNegotiate
147 // Members which are needed for DNS lookup + SPN.
http_auth_gssapi_posix.h 248 // |spn| is the Service Principal Name of the server that the token is
254 const std::string& spn,
263 int GetNextSecurityToken(const std::string& spn,
http_auth_gssapi_posix.cc 718 const std::string& spn,
729 int rv = GetNextSecurityToken(spn, &input_token, &output_token);
836 int HttpAuthGSSAPI::GetNextSecurityToken(const std::string& spn,
841 std::string spn_principal = spn;
855 << "spn \"" << spn_principal << "\"\n"
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
getonescriptspan.h 80 getone::LangSpan* spn, int smoothwidth, int smoothcandidates,
89 void NewText(getone::LangSpan* spn);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 150 /** Keep track of SPN display rules, so we only broadcast intent if something changes. */
548 // The value of spn/showSpn are same in different scenarios.
550 // EXTRA_SPN = spn
551 String spn = (iccRecords != null) ? iccRecords.getServiceProviderName() : ""; local
552 boolean showSpn = !TextUtils.isEmpty(spn)
559 || !TextUtils.equals(spn, mCurSpn)
564 " showPlmn='%b' plmn='%s' showSpn='%b' spn='%s'",
565 showPlmn, plmn, showSpn, spn));
570 intent.putExtra(TelephonyIntents.EXTRA_SPN, spn);
578 mCurSpn = spn;
1319 String spn = SystemProperties.get(TelephonyProperties.PROPERTY_ICC_OPERATOR_ALPHA, "empty"); local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc 872 char out_buf[MAX_MESSAGE], spn[MAX_SPN]; local
877 0, &len, spn) != ERROR_SUCCESS) {
882 sprintfn(spn, MAX_SPN, "HTTP/%s", server.ToString().c_str());
938 ret = InitializeSecurityContextA(&neg->cred, &neg->ctx, spn, flags, 0, SECURITY_NATIVE_DREP, &in_buf_desc, 0, &neg->ctx, &out_buf_desc, &ret_flags, &lifetime);
1013 ret = InitializeSecurityContextA(&cred, 0, spn, flags, 0, SECURITY_NATIVE_DREP, 0, 0, &ctx, &out_buf_desc, &ret_flags, &lifetime);
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpcommon.cc 879 char out_buf[MAX_MESSAGE], spn[MAX_SPN]; local
885 0, &len, spn) != ERROR_SUCCESS) {
890 sprintfn(spn, MAX_SPN, "HTTP/%s", server.ToString().c_str());
946 ret = InitializeSecurityContextA(&neg->cred, &neg->ctx, spn, flags, 0, SECURITY_NATIVE_DREP, &in_buf_desc, 0, &neg->ctx, &out_buf_desc, &ret_flags, &lifetime);
1021 ret = InitializeSecurityContextA(&cred, 0, spn, flags, 0, SECURITY_NATIVE_DREP, 0, 0, &ctx, &out_buf_desc, &ret_flags, &lifetime);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
SIMRecords.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 1286 String spn = SystemProperties.get(TelephonyProperties.PROPERTY_ICC_OPERATOR_ALPHA, "empty"); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkController.java     [all...]

Completed in 1138 milliseconds