Home
last modified time | relevance | path

Searched refs:grant (Results 1 – 25 of 147) sorted by relevance

123456

/frameworks/base/keystore/tests/src/android/security/
DKeyStoreTest.java477 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/
DPermissionRequest.java73 public abstract void grant(String[] resources); in grant() method in PermissionRequest
/frameworks/base/docs/html/guide/topics/manifest/
Dgrant-uri-permission-element.jd1 page.title=<grant-uri-permission>
8 <dd><pre class="stx">&lt;grant-uri-permission android:<a href="#path">path</a>="<i>string</i>"
29 A provider can contain any number of {@code &lt;grant-uri-permission&gt;} elements.
Dprovider-element.jd35 <br/><code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html">&lt;grant-ur…
154 <code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html">&lt;grant-uri-per…
177 …fining <code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html">&lt;grant
185 …so the <code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html">&lt;grant
Dpermission-element.jd33 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
Dmanifest-intro.jd116 …<a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html">&lt;grant-uri-permissi…
141 <br/><code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html">&lt;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
Duses-permission-element.jd82 <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/
Dindex.jd37 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.
Dshare-file.jd212 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/
DKeyStore.java266 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/
Dsecurity.jd37 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/
DIKeystoreService.java370 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/
Dwallet.jd38 from your app. Customers can grant you access to their payment information with just
/frameworks/webview/chromium/java/com/android/webview/chromium/
DWebViewContentsClientAdapter.java1101 public void grant(String[] resources) { in grant() method in WebViewContentsClientAdapter.PermissionRequestAdapter
1104 mAwPermissionRequest.grant(); in grant()
/frameworks/base/docs/html/training/id-auth/
Dauthenticate.jd152 <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/
Dpermissions.jd76 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 &lt;grant-uri-permissions&gt;} tag.</p>
/frameworks/base/docs/html/google/gcm/
Dserver.jd431 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
Dc2dm.jd36 …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/
Ddocument-provider.jd518 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>&quot;true&quot;</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
Dcontent-provider-creating.jd1018 <code><a href="{@docRoot}guide/topics/manifest/grant-uri-permission-element.html">
1019 &lt;grant-uri-permission&gt;</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 &lt;grant-uri-permission&gt;</a></code> child elements to your
/frameworks/base/docs/html/guide/topics/appwidgets/
Dhost.jd202 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/
DAppWidgetServiceImpl.java476 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/
Dsend.jd143 temporary and only grant access to the receiving application. An easy way to create a
/frameworks/av/media/mediaserver/
DNOTICE151 6. Trademarks. This License does not grant permission to use the trade
/frameworks/base/cmds/dpm/
DNOTICE151 6. Trademarks. This License does not grant permission to use the trade

123456