/frameworks/base/keystore/tests/src/android/security/ |
D | KeyStoreTest.java | 477 mKeyStore.grant(TEST_KEYNAME, 0)); in testGrant_Generated_Success() 486 assertTrue("Should be able to grant key to other user", mKeyStore.grant(TEST_KEYNAME, 0)); in testGrant_Imported_Success() 494 mKeyStore.grant(TEST_KEYNAME, 0)); in testGrant_NoKey_Failure() 499 mKeyStore.grant(TEST_KEYNAME, 0)); in testGrant_NotInitialized_Failure() 511 mKeyStore.grant(TEST_KEYNAME, 0)); in testUngrant_Generated_Success() 525 mKeyStore.grant(TEST_KEYNAME, 0)); in testUngrant_Imported_Success() 557 mKeyStore.grant(TEST_KEYNAME, 0)); in testUngrant_DoubleUngrant_Failure() 575 mKeyStore.grant(TEST_KEYNAME, 0)); in testUngrant_DoubleGrantUngrant_Failure() 578 mKeyStore.grant(TEST_KEYNAME, 0)); in testUngrant_DoubleGrantUngrant_Failure()
|
/frameworks/base/core/java/android/webkit/ |
D | PermissionRequest.java | 73 public abstract void grant(String[] resources); in grant() method in PermissionRequest
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | grant-uri-permission-element.jd | 1 page.title=<grant-uri-permission> 8 <dd><pre class="stx"><grant-uri-permission android:<a href="#path">path</a>="<i>string</i>" 29 A provider can contain any number of {@code <grant-uri-permission>} elements.
|
D | provider-element.jd | 35 <br/><code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html"><grant-ur… 154 <code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html"><grant-uri-per… 177 …fining <code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html"><grant… 185 …so the <code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html"><grant…
|
D | permission-element.jd | 33 whether to grant the permission to another application. 76 whether or not to grant the permission to an application requesting it. 98 grant it to the requesting application. For example, any dangerous
|
D | manifest-intro.jd | 116 …<a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html"><grant-uri-permissi… 141 <br/><code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html"><grant-ur… 363 to grant the permission to an application that has requested it, an icon representing 425 the device, the installer determines whether or not to grant the requested
|
D | uses-permission-element.jd | 82 <p>This way, beginning with API level 19, the system will no longer grant your app the
|
/frameworks/base/docs/html/training/secure-file-sharing/ |
D | index.jd | 37 receiving app the file's content URI and grant temporary access permissions to that URI. 53 temporary permissions that you grant to the receiving app for the content URI.
|
D | share-file.jd | 212 allow the client app to access the file. To allow access, grant permissions to the client app by 214 the {@link android.content.Intent}. The permissions you grant are temporary and expire 245 way to securely grant access to your files using temporary access permissions. Avoid calling
|
/frameworks/base/keystore/java/android/security/ |
D | KeyStore.java | 266 public boolean grant(String key, int uid) { in grant() method in KeyStore 268 return mBinder.grant(key, uid) == NO_ERROR; in grant()
|
/frameworks/base/docs/html/guide/faq/ |
D | security.jd | 37 The Android user can choose to grant or deny an application's request for 91 whether they want to grant the application the capabilities it requests.
|
/frameworks/base/core/java/android/security/ |
D | IKeystoreService.java | 370 public int grant(String name, int granteeUid) throws RemoteException { in grant() method in IKeystoreService.Stub.Proxy 644 public int grant(String name, int granteeUid) throws RemoteException; in grant() method
|
/frameworks/base/docs/html/google/play-services/ |
D | wallet.jd | 38 from your app. Customers can grant you access to their payment information with just
|
/frameworks/webview/chromium/java/com/android/webview/chromium/ |
D | WebViewContentsClientAdapter.java | 1101 public void grant(String[] resources) { in grant() method in WebViewContentsClientAdapter.PermissionRequestAdapter 1104 mAwPermissionRequest.grant(); in grant()
|
/frameworks/base/docs/html/training/id-auth/ |
D | authenticate.jd | 152 <li>The user decided not to grant your app access to the account.</li> 159 not to grant access, there's not much that your application can do about it. The
|
/frameworks/base/docs/html/guide/topics/security/ |
D | permissions.jd | 76 the system to grant or deny applications access to <a 78 permissions</a> and to grant or deny an application's <a 152 from Google Play Store), an app cannot be installed if the user does not grant the app 436 <grant-uri-permissions>} tag.</p>
|
/frameworks/base/docs/html/google/gcm/ |
D | server.jd | 431 new tokens become available at the time of the periodic grant. Thus 432 throttling in between periodic grant intervals may add to the latency 436 of the next periodic grant, if they are piggybacked with messages
|
D | c2dm.jd | 36 …ntained in the short term, but C2DM will accept no new users, and it will grant no new quotas. <st…
|
/frameworks/base/docs/html/guide/topics/providers/ |
D | document-provider.jd | 518 app a URI permission grant for that file. It lasts until the user's device restarts. 525 gives your app. Effectively, your app "takes" the persistable URI permission grant 573 <code>"true"</code>. This setting allows the system to grant other apps access 574 to content in your provider. For a discussion of how to persist a grant for
|
D | content-provider-creating.jd | 1018 <code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html"> 1019 <grant-uri-permission></a></code> child elements to your 1028 If the attribute is set to <code>true</code>, then the system will grant temporary 1034 <code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html"> 1035 <grant-uri-permission></a></code> child elements to your
|
/frameworks/base/docs/html/guide/topics/appwidgets/ |
D | host.jd | 202 explicitly grant permission to your app to allow it to add app widgets 209 user to grant permission
|
/frameworks/base/services/appwidget/java/com/android/server/appwidget/ |
D | AppWidgetServiceImpl.java | 476 Pair<Integer, String> grant = mPackagesWithBindWidgetPermission.valueAt(i); in dump() local 477 dumpGrant(grant, i, pw); in dump() 1984 private static void dumpGrant(Pair<Integer, String> grant, int index, PrintWriter pw) { in dumpGrant() argument 1986 pw.print(" user="); pw.print(grant.first); in dumpGrant() 1987 pw.print(" package="); pw.println(grant.second); in dumpGrant()
|
/frameworks/base/docs/html/training/sharing/ |
D | send.jd | 143 temporary and only grant access to the receiving application. An easy way to create a
|
/frameworks/av/media/mediaserver/ |
D | NOTICE | 151 6. Trademarks. This License does not grant permission to use the trade
|
/frameworks/base/cmds/dpm/ |
D | NOTICE | 151 6. Trademarks. This License does not grant permission to use the trade
|