HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 26 - 50 of 152) sorted by null

12 3 4 5 6 7

  /external/openfst/src/include/fst/
connect.h 129 // access[i]: accessibility of state i.
134 SccVisitor(vector<StateId> *scc, vector<bool> *access,
136 : scc_(scc), access_(access), coaccess_(coaccess), props_(props) {}
199 vector<StateId> *scc_stack_; // SCC stack (w/ random access)
304 vector<bool> access; local
307 SccVisitor<Arc> scc_visitor(0, &access, &coaccess, &props);
310 for (StateId s = 0; s < access.size(); ++s)
311 if (!access[s] || !coaccess[s])
  /external/qemu/hw/
i8254.c 248 int channel, access; local
275 access = (val >> 4) & 3;
276 if (access == 0) {
279 s->rw_mode = access;
280 s->read_state = access;
281 s->write_state = access;
  /packages/apps/Nfc/src/com/android/nfc/
NfceeAccessControl.java 55 * Map from UID to NFCEE access, used as a cache.
84 boolean access = false;
91 // Ensure the package has access permissions
93 access = true;
99 mUidCache.put(uid, access);
100 return access;
111 Boolean access = mUidCache.get(info.uid); local
112 if (access == null) {
113 access = checkPackageNfceeAccess(info.packageName);
114 mUidCache.put(info.uid, access);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
pcm_ioplug.h 43 SND_PCM_IOPLUG_HW_ACCESS = 0, /**< access type */
110 snd_pcm_access_t access; /**< access type; filled after hw_params is called */ member in struct:snd_pcm_ioplug
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
pcm_ioplug.h 43 SND_PCM_IOPLUG_HW_ACCESS = 0, /**< access type */
110 snd_pcm_access_t access; /**< access type; filled after hw_params is called */ member in struct:snd_pcm_ioplug
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
control.h 45 unsigned int access; /* access rights */ member in struct:snd_kcontrol_new
60 unsigned int access; /* access rights */ member in struct:snd_kcontrol_volatile
info.h 84 struct mutex access; member in struct:snd_info_entry
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
pcm_ioplug.h 43 SND_PCM_IOPLUG_HW_ACCESS = 0, /**< access type */
110 snd_pcm_access_t access; /**< access type; filled after hw_params is called */ member in struct:snd_pcm_ioplug
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
control.h 45 unsigned int access; /* access rights */ member in struct:snd_kcontrol_new
60 unsigned int access; /* access rights */ member in struct:snd_kcontrol_volatile
info.h 84 struct mutex access; member in struct:snd_info_entry
  /external/openfst/src/include/fst/script/
info-impl.h 136 vector<bool> access, coaccess; local
138 SccVisitor<Arc> scc_visitor(&scc, &access, &coaccess, &props);
153 if (access[s])
157 if (access[s] && coaccess[s])
  /frameworks/native/libs/binder/
IMemory.cpp 308 int access = PROT_READ; local
310 access |= PROT_WRITE;
316 mBase = mmap(0, size, access, MAP_SHARED, fd, offset);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xw32defs.h 24 #define access _access macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xw32defs.h 15 #define access _access macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
nlm_prot.h 128 fsh_access access; member in struct:nlm_share
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 24 #define access _access macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 15 #define access _access macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
nlm_prot.h 128 fsh_access access; member in struct:nlm_share
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 24 #define access _access macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 15 #define access _access macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
nlm_prot.h 128 fsh_access access; member in struct:nlm_share
  /external/chromium/net/disk_cache/
backend_unittest.cc 2093 DWORD access = GENERIC_READ | GENERIC_WRITE; local
    [all...]
  /external/valgrind/main/coregrind/
m_libcfile.c 487 /* Check accessibility of a file. Returns zero for access granted,
489 Int VG_(access) ( const HChar* path, Bool irusr, Bool iwusr, Bool ixusr ) function
  /external/zlib/src/contrib/untgz/
untgz.c 31 # define access(path,mode) _access(path,mode) macro
143 if (access(buffer,F_OK) == 0)
  /frameworks/base/core/java/android/view/
ViewTreeObserver.java 651 CopyOnWriteArray.Access<OnGlobalLayoutListener> access = listeners.start(); local
653 int count = access.size();
655 access.get(i).onGlobalLayout();
676 CopyOnWriteArray.Access<OnPreDrawListener> access = listeners.start(); local
678 int count = access.size();
680 cancelDraw |= !(access.get(i).onPreDraw());
727 CopyOnWriteArray.Access<OnScrollChangedListener> access = listeners.start() local
759 CopyOnWriteArray.Access<OnComputeInternalInsetsListener> access = listeners.start(); local
    [all...]

Completed in 686 milliseconds

12 3 4 5 6 7