Home
last modified time | relevance | path

Searched refs:anchor (Results 1 – 25 of 70) sorted by relevance

123

/frameworks/base/core/java/android/security/net/config/
DTrustedCertificateStoreAdapter.java37 TrustAnchor anchor = mConfig.findTrustAnchorByIssuerAndSignature(cert); in findIssuer() local
38 if (anchor == null) { in findIssuer()
41 return anchor.certificate; in findIssuer()
51 TrustAnchor anchor = mConfig.findTrustAnchorBySubjectAndPublicKey(cert); in getTrustAnchor() local
52 if (anchor == null) { in getTrustAnchor()
55 return anchor.certificate; in getTrustAnchor()
61 TrustAnchor anchor = mConfig.findTrustAnchorBySubjectAndPublicKey(cert); in isUserAddedCertificate() local
62 if (anchor == null) { in isUserAddedCertificate()
65 return anchor.overridesPins; in isUserAddedCertificate()
DKeyStoreCertificateSource.java78 java.security.cert.TrustAnchor anchor = mIndex.findBySubjectAndPublicKey(cert); in findBySubjectAndPublicKey() local
79 if (anchor == null) { in findBySubjectAndPublicKey()
82 return anchor.getTrustedCert(); in findBySubjectAndPublicKey()
88 java.security.cert.TrustAnchor anchor = mIndex.findByIssuerAndSignature(cert); in findByIssuerAndSignature() local
89 if (anchor == null) { in findByIssuerAndSignature()
92 return anchor.getTrustedCert(); in findByIssuerAndSignature()
103 for (java.security.cert.TrustAnchor anchor : anchors) { in findAllByIssuerAndSignature()
104 certs.add(anchor.getTrustedCert()); in findAllByIssuerAndSignature()
DResourceCertificateSource.java88 java.security.cert.TrustAnchor anchor = mIndex.findBySubjectAndPublicKey(cert); in findBySubjectAndPublicKey() local
89 if (anchor == null) { in findBySubjectAndPublicKey()
92 return anchor.getTrustedCert(); in findBySubjectAndPublicKey()
98 java.security.cert.TrustAnchor anchor = mIndex.findByIssuerAndSignature(cert); in findByIssuerAndSignature() local
99 if (anchor == null) { in findByIssuerAndSignature()
102 return anchor.getTrustedCert(); in findByIssuerAndSignature()
113 for (java.security.cert.TrustAnchor anchor : anchors) { in findAllByIssuerAndSignature()
114 certs.add(anchor.getTrustedCert()); in findAllByIssuerAndSignature()
DNetworkSecurityConfig.java85 for (TrustAnchor anchor : anchors) { in getTrustAnchors()
86 X509Certificate cert = anchor.certificate; in getTrustAnchors()
88 anchorMap.put(cert, anchor); in getTrustAnchors()
123 TrustAnchor anchor = ref.findBySubjectAndPublicKey(cert); in findTrustAnchorBySubjectAndPublicKey() local
124 if (anchor != null) { in findTrustAnchorBySubjectAndPublicKey()
125 return anchor; in findTrustAnchorBySubjectAndPublicKey()
134 TrustAnchor anchor = ref.findByIssuerAndSignature(cert); in findTrustAnchorByIssuerAndSignature() local
135 if (anchor != null) { in findTrustAnchorByIssuerAndSignature()
136 return anchor; in findTrustAnchorByIssuerAndSignature()
/frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
DTestCertificateSource.java44 java.security.cert.TrustAnchor anchor = mIndex.findBySubjectAndPublicKey(cert); in findBySubjectAndPublicKey() local
45 if (anchor == null) { in findBySubjectAndPublicKey()
48 return anchor.getTrustedCert(); in findBySubjectAndPublicKey()
53 java.security.cert.TrustAnchor anchor = mIndex.findByIssuerAndSignature(cert); in findByIssuerAndSignature() local
54 if (anchor == null) { in findByIssuerAndSignature()
57 return anchor.getTrustedCert(); in findByIssuerAndSignature()
63 for (java.security.cert.TrustAnchor anchor : mIndex.findAllByIssuerAndSignature(cert)) { in findAllByIssuerAndSignature()
64 certs.add(anchor.getTrustedCert()); in findAllByIssuerAndSignature()
/frameworks/base/core/java/android/widget/
DPopupWindow.java218 final View anchor = mAnchor != null ? mAnchor.get() : null;
219 if (anchor != null && mDecorView != null) {
223 updateAboveAnchor(findDropDownPosition(anchor, p, mAnchorXoff, mAnchorYoff,
1171 public void showAsDropDown(View anchor) { in showAsDropDown() argument
1172 showAsDropDown(anchor, 0, 0); in showAsDropDown()
1192 public void showAsDropDown(View anchor, int xoff, int yoff) { in showAsDropDown() argument
1193 showAsDropDown(anchor, xoff, yoff, DEFAULT_ANCHORED_GRAVITY); in showAsDropDown()
1216 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) { in showAsDropDown() argument
1223 attachToAnchor(anchor, xoff, yoff, gravity); in showAsDropDown()
1228 final WindowManager.LayoutParams p = createPopupLayoutParams(anchor.getWindowToken()); in showAsDropDown()
[all …]
DPopupMenu.java58 public PopupMenu(Context context, View anchor) { in PopupMenu() argument
59 this(context, anchor, Gravity.NO_GRAVITY); in PopupMenu()
73 public PopupMenu(Context context, View anchor, int gravity) { in PopupMenu() argument
74 this(context, anchor, gravity, R.attr.popupMenuStyle, 0); in PopupMenu()
94 public PopupMenu(Context context, View anchor, int gravity, int popupStyleAttr, in PopupMenu() argument
97 mAnchor = anchor; in PopupMenu()
114 mPopup = new MenuPopupHelper(context, mMenu, anchor, false, popupStyleAttr, popupStyleRes); in PopupMenu()
/frameworks/support/v4/java/android/support/v4/widget/
DPopupWindowCompat.java35 void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, int gravity); in showAsDropDown() argument
47 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, in showAsDropDown() argument
50 ViewCompat.getLayoutDirection(anchor)) & Gravity.HORIZONTAL_GRAVITY_MASK; in showAsDropDown()
54 xoff -= (popup.getWidth() - anchor.getWidth()); in showAsDropDown()
56 popup.showAsDropDown(anchor, xoff, yoff); in showAsDropDown()
100 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, in showAsDropDown() argument
102 PopupWindowCompatKitKat.showAsDropDown(popup, anchor, xoff, yoff, gravity); in showAsDropDown()
179 public static void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, in showAsDropDown() argument
181 IMPL.showAsDropDown(popup, anchor, xoff, yoff, gravity); in showAsDropDown()
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DAppCompatPopupWindow.java89 public void showAsDropDown(View anchor, int xoff, int yoff) {
92 yoff -= anchor.getHeight();
94 super.showAsDropDown(anchor, xoff, yoff);
99 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) {
102 yoff -= anchor.getHeight();
104 super.showAsDropDown(anchor, xoff, yoff, gravity);
108 public void update(View anchor, int xoff, int yoff, int width, int height) {
111 yoff -= anchor.getHeight();
113 super.update(anchor, xoff, yoff, width, height);
DPopupMenu.java62 public PopupMenu(@NonNull Context context, @NonNull View anchor) { in PopupMenu() argument
63 this(context, anchor, Gravity.NO_GRAVITY); in PopupMenu()
77 public PopupMenu(@NonNull Context context, @NonNull View anchor, int gravity) { in PopupMenu() argument
78 this(context, anchor, gravity, R.attr.popupMenuStyle, 0); in PopupMenu()
98 public PopupMenu(@NonNull Context context, @NonNull View anchor, int gravity, in PopupMenu() argument
101 mAnchor = anchor; in PopupMenu()
118 mPopup = new MenuPopupHelper(context, mMenu, anchor, false, popupStyleAttr, popupStyleRes); in PopupMenu()
/frameworks/base/docs/html/ndk/reference/
Dgroup___input.jd704 <a class="anchor" id="gaeb170c0fbeeed1d999160566f09f169e"></a>
718 <a class="anchor" id="gac35dbbc035371e799d8badabc981e8fa"></a>
732 <a class="anchor" id="ga21d8182651f4b61ae558560023e8339c"></a>
747 <a class="anchor" id="ga385c44f6fb256e5716a2302a5b940388"></a>
758 <tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="gga385c…
761 <tr><td class="fieldname"><em><a class="anchor" id="gga385c44f6fb256e5716a2302a5b940388a915e1ade9b6…
764 <tr><td class="fieldname"><em><a class="anchor" id="gga385c44f6fb256e5716a2302a5b940388ad8b66283978…
767 <tr><td class="fieldname"><em><a class="anchor" id="gga385c44f6fb256e5716a2302a5b940388afb70c13f16d…
770 <tr><td class="fieldname"><em><a class="anchor" id="gga385c44f6fb256e5716a2302a5b940388a7d45674e03f…
777 <a class="anchor" id="gabc5c98fcc1211af2b80116dd6e0a035d"></a>
[all …]
Dfunctions.jd9 <h3><a class="anchor" id="index_a"></a>- a -</h3><ul>
22 <h3><a class="anchor" id="index_b"></a>- b -</h3><ul>
38 <h3><a class="anchor" id="index_c"></a>- c -</h3><ul>
48 <h3><a class="anchor" id="index_d"></a>- d -</h3><ul>
58 <h3><a class="anchor" id="index_e"></a>- e -</h3><ul>
68 <h3><a class="anchor" id="index_f"></a>- f -</h3><ul>
80 <h3><a class="anchor" id="index_h"></a>- h -</h3><ul>
91 <h3><a class="anchor" id="index_i"></a>- i -</h3><ul>
101 <h3><a class="anchor" id="index_l"></a>- l -</h3><ul>
111 <h3><a class="anchor" id="index_m"></a>- m -</h3><ul>
[all …]
Dfunctions_vars.jd9 <h3><a class="anchor" id="index_a"></a>- a -</h3><ul>
22 <h3><a class="anchor" id="index_b"></a>- b -</h3><ul>
38 <h3><a class="anchor" id="index_c"></a>- c -</h3><ul>
48 <h3><a class="anchor" id="index_d"></a>- d -</h3><ul>
58 <h3><a class="anchor" id="index_e"></a>- e -</h3><ul>
68 <h3><a class="anchor" id="index_f"></a>- f -</h3><ul>
80 <h3><a class="anchor" id="index_h"></a>- h -</h3><ul>
91 <h3><a class="anchor" id="index_i"></a>- i -</h3><ul>
101 <h3><a class="anchor" id="index_l"></a>- l -</h3><ul>
111 <h3><a class="anchor" id="index_m"></a>- m -</h3><ul>
[all …]
Ddeprecated.jd12 <dt><a class="anchor" id="_deprecated000001"></a>Global <a class="el" href="group___configuration.h…
14 <dt><a class="anchor" id="_deprecated000002"></a>Global <a class="el" href="group___configuration.h…
16 <dt><a class="anchor" id="_deprecated000004"></a>Global <a class="el" href="group___native_activity…
18 <dt><a class="anchor" id="_deprecated000006"></a>Global <a class="el" href="group___native_activity…
20 <dt><a class="anchor" id="_deprecated000005"></a>Global <a class="el" href="group___native_activity…
Dstruct_a_sensor_event.jd73 <a class="anchor" id="a5a4f7ed8edd7821e9e0932df3a29792d"></a>
85 <a class="anchor" id="aab1f50881089166ff5f3d46f7bfcf09c"></a>
97 <a class="anchor" id="a31244897a6c7f657a9aec807dd1e09ae"></a>
109 <a class="anchor" id="a1bc800e1b28e4acd0ee4e971619a598f"></a>
121 <a class="anchor" id="a06f14a9abd47b91465f895d5259cdc1b"></a>
133 <a class="anchor" id="a773b39d480759f67926cb18ae2219281"></a>
145 <a class="anchor" id="a2325abb12f65d7cbceec766e6db506d8"></a>
157 <a class="anchor" id="aaf8b2537020ae0b7450785724d77a3e0"></a>
169 <a class="anchor" id="a776bc8e3beff52764ef2d6d423563d64"></a>
181 <a class="anchor" id="a40a6e69697a42e0f0ad04a09d7f113d3"></a>
[all …]
Dgroup___configuration.jd225 <a class="anchor" id="ga6709434d0f99b8367d0df2dfdfbef45a"></a>
244 <a class="anchor" id="ga99fb83031ce9923c84392b4e92f956b5"></a>
255 <tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="gga99fb…
258 <tr><td class="fieldname"><em><a class="anchor" id="gga99fb83031ce9923c84392b4e92f956b5ad9bf5c1fb90…
261 <tr><td class="fieldname"><em><a class="anchor" id="gga99fb83031ce9923c84392b4e92f956b5ad5746872ff6…
264 <tr><td class="fieldname"><em><a class="anchor" id="gga99fb83031ce9923c84392b4e92f956b5ab0ca4fce673…
267 <tr><td class="fieldname"><em><a class="anchor" id="gga99fb83031ce9923c84392b4e92f956b5aa73bcf45261…
270 <tr><td class="fieldname"><em><a class="anchor" id="gga99fb83031ce9923c84392b4e92f956b5adfbeb370edd…
273 <tr><td class="fieldname"><em><a class="anchor" id="gga99fb83031ce9923c84392b4e92f956b5a8316a15b063…
276 <tr><td class="fieldname"><em><a class="anchor" id="gga99fb83031ce9923c84392b4e92f956b5a4bf2a8323ec…
[all …]
Dstruct_a_sensor_vector.jd49 <a class="anchor" id="a1c2115c78d0380b0ecfbf9e94adcf821"></a>
61 <a class="anchor" id="a01b03ebfa7d0a95760e743f611fecbc5"></a>
73 <a class="anchor" id="a282e7d4378d4a18a805b8980295ac86c"></a>
85 <a class="anchor" id="a72aca6ea6d8153b28ea8f139b932ec3e"></a>
97 <a class="anchor" id="a26fd84d522945b6038221d9e38c7cc39"></a>
109 <a class="anchor" id="a555c2084e8436de01dc76a23590e8824"></a>
121 <a class="anchor" id="a9a1a1a00f1e45435cc3001b553000a21"></a>
133 <a class="anchor" id="ad0da36b2558901e21e7a30f6c227a45e"></a>
145 <a class="anchor" id="aa4f0d3eebc3c443f9be81bf48561a217"></a>
157 <a class="anchor" id="af73583b1e980b0aa03f9884812e9fd4d"></a>
Dstruct_a_uncalibrated_event.jd48 <a class="anchor" id="a7b163a0b99971787ece3a65e6000fdf2"></a>
60 <a class="anchor" id="ac376d6a49d888be08124578ee9b9fc15"></a>
72 <a class="anchor" id="a52bd7f09c4decadcfbc0347fda4163d6"></a>
84 <a class="anchor" id="a9c22454e765672782b7198d57a92f5fd"></a>
96 <a class="anchor" id="a56c4ea73587a9ea20595cca9bcfe9593"></a>
108 <a class="anchor" id="ac8b7f8daea042eaa2b86f0bf2160c44a"></a>
120 <a class="anchor" id="a130457eaa905b467bc43fedb02cbb16a"></a>
132 <a class="anchor" id="a43437dd77e26c6b89ab1c91aeb63fd64"></a>
144 <a class="anchor" id="a6e265324293107afbfa9e587941a4036"></a>
156 <a class="anchor" id="ae677be5f98570cc5a1fd7fddcd8a6841"></a>
Dgroup___bitmap.jd63 <a class="anchor" id="gafb665ac9fefad34ac5c035f5d1314080"></a>
77 <a class="anchor" id="gadf764cbdea00d65edcd07bb9953ad2b7"></a>
88 <tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="ggadf76…
91 <tr><td class="fieldname"><em><a class="anchor" id="ggadf764cbdea00d65edcd07bb9953ad2b7acf7205d1a34…
94 <tr><td class="fieldname"><em><a class="anchor" id="ggadf764cbdea00d65edcd07bb9953ad2b7a6b099b9533c…
97 <tr><td class="fieldname"><em><a class="anchor" id="ggadf764cbdea00d65edcd07bb9953ad2b7a512f5b95b6b…
104 <a class="anchor" id="gaea286a2d4c61ae2abb02b51500499f13"></a>
115 <tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="ggaea28…
118 <tr><td class="fieldname"><em><a class="anchor" id="ggaea286a2d4c61ae2abb02b51500499f13ab92ae96ceea…
121 <tr><td class="fieldname"><em><a class="anchor" id="ggaea286a2d4c61ae2abb02b51500499f13a11b32e10d6d…
[all …]
Dgroup___native_activity.jd145 <a class="anchor" id="ga8abd07923f37feb1ce724d139cc2609d"></a>
158 <a class="anchor" id="ga569a53bcac3fcedb0189b7c412ebcb22"></a>
171 <a class="anchor" id="ga28dca784e5ee939427135c72c0151c38"></a>
184 <a class="anchor" id="ga66956d540c2e3709e12156d195e64726"></a>
198 <a class="anchor" id="gad0983ca473ce36293baf5e51a14c3357"></a>
212 <a class="anchor" id="gaa984a498f0e146ac57c6022a323423cf"></a>
227 <a class="anchor" id="ga39fca1837c5ce7715cbf571669660c13"></a>
238 <tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="gga39fc…
241 <tr><td class="fieldname"><em><a class="anchor" id="gga39fca1837c5ce7715cbf571669660c13a324062ac78f…
248 <a class="anchor" id="gaaf8fd5f0e57d456151c951e0f3715fc4"></a>
[all …]
Dgroup___storage.jd79 <a class="anchor" id="gaa5037fe4c0d785a50fc62ac2de9844c3"></a>
92 <a class="anchor" id="ga419f40803228bca62e32beb911ab28e2"></a>
105 <a class="anchor" id="gaf077d06586fa4c0212baa2fe458b9617"></a>
130 <a class="anchor" id="gae4d5251432e1a9e6803c0240cc492e18"></a>
141 <tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="ggae4d5…
148 <a class="anchor" id="gae8a3b6a5d0d3244ed73924ab2421a0d0"></a>
159 <tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="ggae8a3…
162 <tr><td class="fieldname"><em><a class="anchor" id="ggae8a3b6a5d0d3244ed73924ab2421a0d0a6710bb5b68c…
165 <tr><td class="fieldname"><em><a class="anchor" id="ggae8a3b6a5d0d3244ed73924ab2421a0d0a50642881107…
168 <tr><td class="fieldname"><em><a class="anchor" id="ggae8a3b6a5d0d3244ed73924ab2421a0d0a324da2b8fea…
[all …]
Dgroup___sensor.jd145 <a class="anchor" id="gaf8b57b13c6432bc6136aac0ad3813d63"></a>
158 <a class="anchor" id="ga4423a712e27b6d5a57d138796892886d"></a>
171 <a class="anchor" id="ga5129cb9e4091fc3474e246d5f950e52b"></a>
185 <a class="anchor" id="gae85b6eac76abe74e6e53d78bb3a4858c"></a>
197 <a class="anchor" id="ga0378daec23b2d8a70438ef7c3912475f"></a>
209 <a class="anchor" id="ga93b28b7ce5e9b6d2ebc5b574cd5f4710"></a>
236 <a class="anchor" id="ga6bb167c45f0ef0a94d8f178d227e781f"></a>
248 <a class="anchor" id="gaa9448106d6d463f4cc5dded7c914e7ae"></a>
270 <a class="anchor" id="ga26ff51817e8b320a631b3bf4ed378d58"></a>
284 <a class="anchor" id="gaef620baab9b276ab8f914ae77babc349"></a>
[all …]
Dstruct_a_native_window___buffer.jd35 <a class="anchor" id="a089d8e968fac54a9e45f059b8b78cf9b"></a>
47 <a class="anchor" id="a49d503b84d084937e3ceeda9f0b4659e"></a>
59 <a class="anchor" id="a5d8006e753a3e76ff637a4e092bbed71"></a>
71 <a class="anchor" id="a60cc5aad4013157e2e7434d6de450656"></a>
83 <a class="anchor" id="a4438e3445d33be6d33b2c0dbe9c2e0d7"></a>
95 <a class="anchor" id="a395d15e7c2b09961c1bfd1da6179b64c"></a>
/frameworks/base/core/java/com/android/internal/view/menu/
DStandardMenuPopup.java66 final View anchor = mShownAnchorView;
67 if (anchor == null || !anchor.isShown()) {
161 final View anchor = mShownAnchorView; in tryShow() local
163 mTreeObserver = anchor.getViewTreeObserver(); // Refresh to latest in tryShow()
167 anchor.addOnAttachStateChangeListener(mAttachStateChangeListener); in tryShow()
168 mPopup.setAnchorView(anchor); in tryShow()
313 public void setAnchorView(View anchor) { in setAnchorView() argument
314 mAnchorView = anchor; in setAnchorView()
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
DStandardMenuPopup.java65 final View anchor = mShownAnchorView;
66 if (anchor == null || !anchor.isShown()) {
143 final View anchor = mShownAnchorView; in tryShow() local
145 mTreeObserver = anchor.getViewTreeObserver(); // Refresh to latest in tryShow()
149 mPopup.setAnchorView(anchor); in tryShow()
292 public void setAnchorView(View anchor) { in setAnchorView() argument
293 mAnchorView = anchor; in setAnchorView()

123