Home
last modified time | relevance | path

Searched refs:access (Results 1 – 25 of 379) sorted by relevance

12345678910>>...16

/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DTransformClassAdapter.java63 public void visit(int version, int access, String name, in visit() argument
70 access = access & ~Opcodes.ACC_FINAL; in visit()
74 mIsInterface = ((access & Opcodes.ACC_INTERFACE) != 0); in visit()
75 super.visit(version, access, name, signature, superName, interfaces); in visit()
80 public void visitInnerClass(String name, String outerName, String innerName, int access) { in visitInnerClass() argument
82 access = access & ~Opcodes.ACC_FINAL; in visitInnerClass()
86 super.visitInnerClass(name, outerName, innerName, access); in visitInnerClass()
91 public MethodVisitor visitMethod(int access, String name, String desc, in visitMethod() argument
109 access = access & ~Opcodes.ACC_FINAL; in visitMethod()
114 ((access & (Opcodes.ACC_ABSTRACT | Opcodes.ACC_NATIVE)) != Opcodes.ACC_ABSTRACT) && in visitMethod()
[all …]
DDelegateClassAdapter.java71 public MethodVisitor visitMethod(int access, String name, String desc, in visitMethod() argument
74 boolean isStatic = (access & Opcodes.ACC_STATIC) != 0; in visitMethod()
75 boolean isNative = (access & Opcodes.ACC_NATIVE) != 0; in visitMethod()
82 return super.visitMethod(access, name, desc, signature, exceptions); in visitMethod()
95 access = access & ~Opcodes.ACC_NATIVE; in visitMethod()
96 MethodVisitor mwDelegate = super.visitMethod(access, name, desc, signature, exceptions); in visitMethod()
114 int accessDelegate = access; in visitMethod()
115 access = access & ~Opcodes.ACC_PRIVATE; // If private, make it package protected. in visitMethod()
117 MethodVisitor mwOriginal = super.visitMethod(access, name + ORIGINAL_SUFFIX, in visitMethod()
DClassHasNativeVisitor.java49 public void visit(int version, int access, String name, String signature, in visit() argument
71 public FieldVisitor visitField(int access, String name, String desc, in visitField() argument
79 String innerName, int access) { in visitInnerClass() argument
84 public MethodVisitor visitMethod(int access, String name, String desc, in visitMethod() argument
86 if ((access & Opcodes.ACC_NATIVE) != 0) { in visitMethod()
DAbstractClassAdapter.java169 public void visit(int version, int access, String name, String signature, in visit() argument
191 super.visit(version, access, name, signature, superName, interfaces); in visit()
195 public void visitInnerClass(String name, String outerName, String innerName, int access) { in visitInnerClass() argument
198 super.visitInnerClass(name, outerName, innerName, access); in visitInnerClass()
207 public MethodVisitor visitMethod(int access, String name, String desc, in visitMethod() argument
211 MethodVisitor mw = super.visitMethod(access, name, desc, signature, exceptions); in visitMethod()
222 public FieldVisitor visitField(int access, String name, String desc, in visitField() argument
225 return super.visitField(access, name, desc, signature, value); in visitField()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DBackingStore.java88 public Backing lockBacking(int mode, int access) { in lockBacking() argument
89 Backing backing = fetchBacking(mode, access); in lockBacking()
186 private Backing fetchBacking(int mode, int access) { in fetchBacking() argument
187 Backing backing = getBacking(mode, access); in fetchBacking()
189 backing = attachNewBacking(mode, access); in fetchBacking()
201 private Backing getBacking(int mode, int access) { in getBacking() argument
208 if ((backingAccess & access) == access) { in getBacking()
215 private Backing attachNewBacking(int mode, int access) { in attachNewBacking() argument
216 Backing backing = createBacking(mode, access); in attachNewBacking()
224 private Backing createBacking(int mode, int access) { in createBacking() argument
[all …]
DFrameManager.java115 public abstract Backing fetchBacking(int mode, int access, int[] dimensions, int elemSize); in fetchBacking() argument
135 public Backing fetchBacking(int mode, int access, int[] dimensions, int elemSize) { in fetchBacking() argument
173 public Backing fetchBacking(int mode, int access, int[] dimensions, int elemSize) { in fetchBacking() argument
178 if ((backingAccess & access) == access in fetchBacking()
409 Backing fetchBacking(int mode, int access, int[] dimensions, int elemSize) { in fetchBacking() argument
410 return mCache.fetchBacking(mode, access, dimensions, elemSize); in fetchBacking()
/frameworks/base/core/java/android/view/
DViewTreeObserver.java908 CopyOnWriteArray.Access<OnGlobalLayoutListener> access = listeners.start(); in dispatchOnGlobalLayout() local
910 int count = access.size(); in dispatchOnGlobalLayout()
912 access.get(i).onGlobalLayout(); in dispatchOnGlobalLayout()
940 CopyOnWriteArray.Access<OnPreDrawListener> access = listeners.start(); in dispatchOnPreDraw() local
942 int count = access.size(); in dispatchOnPreDraw()
944 cancelDraw |= !(access.get(i).onPreDraw()); in dispatchOnPreDraw()
962 CopyOnWriteArray.Access<OnWindowShownListener> access = listeners.start(); in dispatchOnWindowShown() local
964 int count = access.size(); in dispatchOnWindowShown()
966 access.get(i).onWindowShown(); in dispatchOnWindowShown()
1012 CopyOnWriteArray.Access<OnScrollChangedListener> access = listeners.start(); in dispatchOnScrollChanged() local
[all …]
/frameworks/native/opengl/tools/glgen/stubs/gles11/
DglMapBufferRange.cpp4 (JNIEnv *_env, jobject _this, jint target, jint offset, jint length, jint access) { in android_glMapBufferRange__IIII() argument
6 (GLintptr)offset, (GLsizeiptr)length, (GLbitfield)access); in android_glMapBufferRange__IIII()
/frameworks/multidex/gradle/wrapper/
Dgradle-wrapper.jar ... int timeoutMs int pollIntervalMs public java.lang.Object access (java.io.File, java.util ...
/frameworks/support/gradle/wrapper/
Dgradle-wrapper.jar ... int timeoutMs int pollIntervalMs public java.lang.Object access (java.io.File, java.util ...
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
Dgradle-wrapper.jar ... int timeoutMs int pollIntervalMs public java.lang.Object access (java.io.File, java.util ...
/frameworks/base/cmds/idmap/
Didmap.cpp101 return access(path, R_OK | X_OK) == 0; in verify_directory_readable()
106 return access(path, W_OK) == 0; in verify_directory_writable()
111 return access(path, R_OK) == 0; in verify_file_readable()
/frameworks/native/cmds/installd/
Dinstalld.c390 if (access(user_data_dir, R_OK) < 0) { in initialize_directories()
402 if (access(primary_data_dir, R_OK) < 0) { in initialize_directories()
422 if (access(media_tmp_dir, F_OK) == -1) { in initialize_directories()
443 if (access(media_tmp_dir, F_OK) == 0) { in initialize_directories()
494 if (access(media_obb_dir, F_OK) != 0 && access(owner_obb_path, F_OK) == 0) { in initialize_directories()
557 if (access(keychain_added_dir, F_OK) == 0) { in initialize_directories()
562 if (access(keychain_removed_dir, F_OK) == 0) { in initialize_directories()
570 if (access(keychain_added_dir, F_OK) == 0) { in initialize_directories()
573 if (access(keychain_removed_dir, F_OK) == 0) { in initialize_directories()
/frameworks/base/docs/html/tools/debugging/
Ddebugging-projects.jd19 along with DDMS, to debug your applications. To access the debugger and
27 <p>The Debug Perspective in Eclipse gives you access to the following tabs:</p>
40 <p>You can access the Debug Perspective by clicking <strong>Window &gt; Open Perspective &gt;
45 <p>The DDMS Perspective in Eclipse lets you access all of the features
63 <p>To access the DDMS perspective, go to <strong>Window &gt; Open Perspective &gt;
/frameworks/base/docs/html/guide/topics/providers/
Dcontent-providers.jd52 Content providers manage access to a structured set of data. They encapsulate the
57 When you want to access data in a content provider, you use the
87 How to access data in a content provider when the data is organized in tables.
101 How to access the Calendar Provider that is part of the Android platform.
108 How to access the Contacts Provider that is part of the Android platform.
Dcontent-provider-basics.jd23 <a href="#RequestPermissions">Requesting read access permission</a>
60 <a href="#Batch">Batch access</a>
63 <a href="#Intents">Data access via intents</a>
124 A content provider manages access to a central repository of data. A provider
127 applications, which access the provider using a provider client object. Together, providers
129 inter-process communication and secure data access.
233 <strong>Note:</strong> To access a provider, your application usually has to request specific
307 a client method to access a table in a provider, the content URI for the table is one of
321 table to access. A provider usually has a <strong>path</strong> for each table it exposes.
336 Many providers allow you to access a single row in a table by appending an ID value
[all …]
/frameworks/webview/chromium/tests/prebuilts/
Dandroid-janktesthelper.jar ... getIteration () static synthetic java.io.File access$000 () static synthetic void access$100 ...
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DAsmGeneratorTest.java343 public void visit(int version, int access, String name, String signature, in visit() argument
349 super.visit(version, access, name, signature, superName, interfaces); in visit()
353 public FieldVisitor visitField(int access, String name, String desc, in visitField() argument
356 return super.visitField(access, name, desc, signature, value); in visitField()
361 public MethodVisitor visitMethod(int access, String name, String desc, in visitMethod() argument
363 MethodVisitor mv = super.visitMethod(access, name, desc, signature, exceptions); in visitMethod()
/frameworks/base/docs/html/guide/topics/admin/
Dindex.jd3 …ou can take advantage of APIs and system capabilities to manage Android devices and control access.
13 href="http://android-developers.blogspot.com/2012/03/unifying-key-store-access-in-ics.html">
/frameworks/base/docs/html/training/id-auth/
Dauthenticate.jd26 <p>In order to securely access an online service, users need to authenticate to
29 more complicated. Not only does the user need to be authenticated to access the
43 <li>Getting permission from the user to access an online service using his or
53 to access:</p>
56 <li>The url of the service you want to access.</li>
58 type of access your app is asking for. For instance, the auth scope for
59 read-only access to Google Tasks is <code>View your tasks</code>, while the auth
60 scope for read-write access to Google Tasks is <code>Manage Your
152 <li>The user decided not to grant your app access to the account.</li>
153 <li>The stored account credentials aren't sufficient to gain access to the account.</li>
[all …]
Dindex.jd33 devices know who your user is, what services they have access to, and where they
43 <li>Gain permission to access the user's online data via services like
57 <dd> Use OAuth2 to help users get permission to access web services without needing to type in a
/frameworks/base/docs/html/google/play-services/
Dauth.jd21 in the Google Play services platform by using the access token to manually make API
26 which shows you how to carry out these basic steps for obtaining an access token.</p>
31 to gain authorization to the services that you want to use. To obtain an access token,
43 in an array. When obtaining an access token, only the email address of the account is
61 With an email address and the service scope you can now obtain an access token.
81 …The following code snippet obtains an access token with an email address, the scope that you want …
106 <p>If you are obtaining access tokens in a background service or sync adapter, there
119 app to access the account, the intent is broadcasted. When using this method:
134 app to access the account, the sync adapter retries syncing with the information
145 When requesting an access token with
[all …]
/frameworks/base/docs/html/google/play/licensing/
Doverview.jd95 signed response data, and enforces access controls.</p>
132 custom code for defining licensing policy and managing access as needed by your application. The key
137 <dd>Your implementation determines whether to allow access to the
146 <dd>Your implementation manages access to the
148 response. Your implementation can manage access in any way needed, including
162 and access to the application while the device is offline (such as when the
168 does not cache any response data and allows the application access <em>only</em>
181 applications before publishing them, even if you don't have access to a
191 designed to let you control access to applications that are not published
203 the network. You can implement license caching behaviors to manage access to your application when
[all …]
/frameworks/webview/chromium/
Dproguard.flags40 # MediaPlayerBridge uses reflection to access internal metadata.
43 # AndroidKeyStore uses reflection to access internal OpenSSL state.
46 # TraceEvent uses reflection to access internal trace info.
49 # ProxyChangeListener$ProxyReceiver uses reflection to access internal
/frameworks/base/docs/html/training/improving-layouts/
Dsmooth-scrolling.jd33 thread (the UI thread) free from heavy processing. Ensure you do any disk access, network access, or
34 SQL access in a separate thread. To test the status of your app, you can enable {@link
94 Layout, so you can immediately access them without the need to look them up repeatedly. First, you
118 <p>Now you can easily access each view without the need for the look-up, saving valuable processor

12345678910>>...16