Home
last modified time | relevance | path

Searched full:psl (Results 1 – 25 of 235) sorted by relevance

12345678910

/aosp_15_r20/frameworks/base/core/java/android/telephony/
H A DPhoneStateListener.java1331 PhoneStateListener psl = mPhoneStateListenerWeakRef.get(); in onServiceStateChanged() local
1332 if (psl == null) return; in onServiceStateChanged()
1335 () -> mExecutor.execute(() -> psl.onServiceStateChanged(serviceState))); in onServiceStateChanged()
1339 PhoneStateListener psl = mPhoneStateListenerWeakRef.get(); in onSignalStrengthChanged() local
1340 if (psl == null) return; in onSignalStrengthChanged()
1343 () -> mExecutor.execute(() -> psl.onSignalStrengthChanged(asu))); in onSignalStrengthChanged()
1347 PhoneStateListener psl = mPhoneStateListenerWeakRef.get(); in onMessageWaitingIndicatorChanged() local
1348 if (psl == null) return; in onMessageWaitingIndicatorChanged()
1351 () -> mExecutor.execute(() -> psl.onMessageWaitingIndicatorChanged(mwi))); in onMessageWaitingIndicatorChanged()
1355 PhoneStateListener psl = mPhoneStateListenerWeakRef.get(); in onCallForwardingIndicatorChanged() local
[all …]
/aosp_15_r20/external/curl/lib/
H A Dpsl.c31 #include "psl.h"
41 if(pslcache->psl) { in Curl_psl_destroy()
43 psl_free((psl_ctx_t *) pslcache->psl); in Curl_psl_destroy()
44 pslcache->psl = NULL; in Curl_psl_destroy()
58 struct PslCache *pslcache = easy->psl; in Curl_psl_use()
59 const psl_ctx_t *psl; in Curl_psl_use() local
67 if(!pslcache->psl || pslcache->expires <= now) { in Curl_psl_use()
76 if(!pslcache->psl || pslcache->expires <= now) { in Curl_psl_use()
81 psl = psl_latest(NULL); in Curl_psl_use()
82 dynamic = psl != NULL; in Curl_psl_use()
[all …]
H A Dpsl.h32 #define PSL_TTL (72 * 3600) /* PSL time to live before a refresh. */
35 const psl_ctx_t *psl; /* The PSL. */ member
36 time_t expires; /* Time this PSL life expires. */
37 bool dynamic; /* PSL should be released when no longer needed. */
H A Dcookie.c78 #include "psl.h"
640 * Without PSL we do not know when the incoming cookie is set on a in parse_cookie_header()
939 * must also check that the data handle is not NULL since the psl code will in is_public_suffix()
942 DEBUGF(infof(data, "PSL check set-cookie '%s' for domain=%s in %s", in is_public_suffix()
951 const psl_ctx_t *psl = Curl_psl_use(data); in is_public_suffix() local
952 if(psl) { in is_public_suffix()
953 /* the PSL check requires lowercase domain name and pattern */ in is_public_suffix()
956 acceptable = psl_is_cookie_domain_acceptable(psl, lcase, lcookie); in is_public_suffix()
973 DEBUGF(infof(data, "NO PSL to check set-cookie '%s' for domain=%s in %s", in is_public_suffix()
H A Dmultihandle.h30 #include "psl.h"
113 /* PSL cache. */
114 struct PslCache psl; member
H A Dmulti.c37 #include "psl.h"
556 /* Do the same for PSL. */ in curl_multi_add_handle()
558 data->psl = &data->share->psl; in curl_multi_add_handle()
560 data->psl = &multi->psl; in curl_multi_add_handle()
884 /* Remove the PSL association. */ in curl_multi_remove_handle()
885 if(data->psl == &multi->psl) in curl_multi_remove_handle()
886 data->psl = NULL; in curl_multi_remove_handle()
3111 if(data->psl == &multi->psl)
3112 data->psl = NULL;
3123 Curl_psl_destroy(&multi->psl);
H A Dshare.h30 #include "psl.h"
55 struct PslCache psl; member
/aosp_15_r20/cts/tests/tests/telephony/current/src/android/telephony/cts/
H A DTelephonyRegistryManagerTest.java119 PhoneStateListener psl = new PhoneStateListener(context.getMainExecutor()) { in testNotifyCallStateChangedForAllSubscriptions() local
126 tm.listen(psl, PhoneStateListener.LISTEN_CALL_STATE); in testNotifyCallStateChangedForAllSubscriptions()
146 PhoneStateListener psl = new PhoneStateListener(context.getMainExecutor()) { in testNotifyCallStateChanged() local
154 tm.listen(psl, PhoneStateListener.LISTEN_CALL_STATE); in testNotifyCallStateChanged()
180 PhoneStateListener psl = new PhoneStateListener(context.getMainExecutor()) { in testNotifyServiceStateChanged() local
187 tm.listen(psl, PhoneStateListener.LISTEN_SERVICE_STATE); in testNotifyServiceStateChanged()
211 PhoneStateListener psl = new PhoneStateListener(context.getMainExecutor()) { in testNotifySignalStrengthChanged() local
218 tm.listen(psl, PhoneStateListener.LISTEN_SIGNAL_STRENGTHS); in testNotifySignalStrengthChanged()
240 PhoneStateListener psl = new PhoneStateListener(context.getMainExecutor()) { in testNotifyMessageWaitingChanged() local
247 tm.listen(psl, PhoneStateListener.LISTEN_MESSAGE_WAITING_INDICATOR); in testNotifyMessageWaitingChanged()
[all …]
/aosp_15_r20/external/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h34 ParsedSourceLocation PSL; in FromString() local
40 if (!ColSplit.second.getAsInteger(10, PSL.Column) && in FromString()
41 !LineSplit.second.getAsInteger(10, PSL.Line)) { in FromString()
42 PSL.FileName = LineSplit.first; in FromString()
46 if (PSL.FileName == "-") in FromString()
47 PSL.FileName = "<stdin>"; in FromString()
50 return PSL; in FromString()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/Frontend/
DCommandLineSourceLoc.h34 ParsedSourceLocation PSL; in FromString() local
40 if (!ColSplit.second.getAsInteger(10, PSL.Column) && in FromString()
41 !LineSplit.second.getAsInteger(10, PSL.Line)) { in FromString()
42 PSL.FileName = std::string(LineSplit.first); in FromString()
46 if (PSL.FileName == "-") in FromString()
47 PSL.FileName = "<stdin>"; in FromString()
50 return PSL; in FromString()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/Frontend/
DCommandLineSourceLoc.h34 ParsedSourceLocation PSL; in FromString() local
40 if (!ColSplit.second.getAsInteger(10, PSL.Column) && in FromString()
41 !LineSplit.second.getAsInteger(10, PSL.Line)) { in FromString()
42 PSL.FileName = std::string(LineSplit.first); in FromString()
46 if (PSL.FileName == "-") in FromString()
47 PSL.FileName = "<stdin>"; in FromString()
50 return PSL; in FromString()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/Frontend/
DCommandLineSourceLoc.h34 ParsedSourceLocation PSL; in FromString() local
40 if (!ColSplit.second.getAsInteger(10, PSL.Column) && in FromString()
41 !LineSplit.second.getAsInteger(10, PSL.Line)) { in FromString()
42 PSL.FileName = std::string(LineSplit.first); in FromString()
46 if (PSL.FileName == "-") in FromString()
47 PSL.FileName = "<stdin>"; in FromString()
50 return PSL; in FromString()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/Frontend/
DCommandLineSourceLoc.h34 ParsedSourceLocation PSL; in FromString() local
40 if (!ColSplit.second.getAsInteger(10, PSL.Column) && in FromString()
41 !LineSplit.second.getAsInteger(10, PSL.Line)) { in FromString()
42 PSL.FileName = std::string(LineSplit.first); in FromString()
46 if (PSL.FileName == "-") in FromString()
47 PSL.FileName = "<stdin>"; in FromString()
50 return PSL; in FromString()
/aosp_15_r20/prebuilts/go/linux-x86/src/net/http/cookiejar/
Djar.go334 func jarKey(host string, psl PublicSuffixList) string {
340 if psl == nil {
346 suffix := psl.PublicSuffix(host)
352 // The provided public suffix list psl is broken.
357 // here on, so it is okay if psl.PublicSuffix("www.buggy.psl")
Djar_test.go24 // PublicSuffix("www.buggy.psl") == "xy"
25 // PublicSuffix("www2.buggy.psl") == "com"
35 if d == "www.buggy.psl" {
38 if d == "www2.buggy.psl" {
200 "www.buggy.psl": "www.buggy.psl",
201 "www2.buggy.psl": "buggy.psl",
/aosp_15_r20/external/curl/tests/data/
H A Dtest11369 PSL
35 PSL
43 Check cookies against PSL
H A Dtest147629 PSL violating cookie with mixed case domain and cookie domain property
36 PSL
/aosp_15_r20/external/cldr/tools/scripts/tr-archive/
H A Dpackage-lock.json616 "node_modules/psl": {
618 "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
679 "psl": "^1.1.33", string
1269 "psl": { object
1271 "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
1323 "psl": "^1.1.33", string
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
H A DSampleProfWriter.h59 virtual void setProfileSymbolList(ProfileSymbolList *PSL) {} in setProfileSymbolList() argument
201 virtual void setProfileSymbolList(ProfileSymbolList *PSL) override { in setProfileSymbolList() argument
202 ProfSymList = PSL; in setProfileSymbolList()
/aosp_15_r20/packages/modules/Permission/tests/cts/permission/telephony/src/android/permission/cts/telephony/
DTelephonyManagerPermissionTest.java392 PhoneStateListener psl = new PhoneStateListener((Runnable r) -> { }); in testListen() local
398 assertThrowsSecurityException(() -> mTelephonyManager.listen(psl, listenBit), in testListen()
402 mTelephonyManager.listen(psl, PhoneStateListener.LISTEN_NONE); in testListen()
/aosp_15_r20/external/curl/docs/cmdline-opts/
H A Dcookie.md59 If curl is built with PSL (**Public Suffix List**) support, it detects and
61 allowed to have cookies. If curl is *not* built with PSL support, it has no
H A Dversion.md97 ## `PSL`
98 PSL is short for Public Suffix List and means that this curl has been built
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ProfileData/
DSampleProfWriter.h127 virtual void setProfileSymbolList(ProfileSymbolList *PSL) {} in setProfileSymbolList() argument
282 void setProfileSymbolList(ProfileSymbolList *PSL) override { in setProfileSymbolList() argument
283 ProfSymList = PSL; in setProfileSymbolList()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ProfileData/
DSampleProfWriter.h127 virtual void setProfileSymbolList(ProfileSymbolList *PSL) {} in setProfileSymbolList() argument
282 void setProfileSymbolList(ProfileSymbolList *PSL) override { in setProfileSymbolList() argument
283 ProfSymList = PSL; in setProfileSymbolList()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ProfileData/
DSampleProfWriter.h127 virtual void setProfileSymbolList(ProfileSymbolList *PSL) {} in setProfileSymbolList() argument
282 void setProfileSymbolList(ProfileSymbolList *PSL) override { in setProfileSymbolList() argument
283 ProfSymList = PSL; in setProfileSymbolList()

12345678910