Searched refs:access (Results 1 - 25 of 230) sorted by relevance

12345678910

/external/apache-harmony/security/src/test/resources/PermissionCollection/
H A DsignedBKS.jar ... .2_r1/s?defs= " () public static void access () java.io.File f public static void main ...
/external/apache-harmony/support/src/test/resources/tests/resources/
H A Dhyts_signed.jar ... .2_r1/s?defs= " () public static void access () java.io.File f public static void main ...
/external/qemu/
H A Dkvm-android.c21 if (access("/dev/kvm",F_OK)) {
27 /* Can we access it? */
28 if (access("/dev/kvm",R_OK)) {
/external/javassist/src/main/javassist/bytecode/analysis/
H A DSubroutine.java31 private Set access = new HashSet(); field in class:Subroutine
47 public void access(int index) { method in class:Subroutine
48 access.add(new Integer(index));
52 return access.contains(new Integer(index));
56 return access;
/external/proguard/src/proguard/ant/
H A DClassSpecificationElement.java40 private String access; field in class:ClassSpecificationElement
76 String access = classSpecificationElement.access;
93 requiredAccessFlags(true, access, type),
94 requiredAccessFlags(false, access, type),
116 public void setAccess(String access) argument
118 this.access = access;
202 String access,
208 if (access !
201 requiredAccessFlags(boolean set, String access, String type) argument
[all...]
H A DMemberSpecificationElement.java39 private String access; field in class:MemberSpecificationElement
67 String access = memberSpecificationElement.access;
116 new MemberSpecification(requiredAccessFlags(true, access),
117 requiredAccessFlags(false, access),
129 public void setAccess(String access) argument
131 this.access = access;
171 String access)
176 if (access !
170 requiredAccessFlags(boolean set, String access) argument
[all...]
/external/chromium/base/win/
H A Dregistry.h28 RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access);
31 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access);
34 DWORD* disposition, REGSAM access);
36 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
39 LONG CreateKey(const wchar_t* name, REGSAM access);
42 LONG OpenKey(const wchar_t* name, REGSAM access);
75 // The key must have been opened with the KEY_NOTIFY access privilege.
H A Dregistry.cc24 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access) argument
29 if (access & (KEY_SET_VALUE | KEY_CREATE_SUB_KEY | KEY_CREATE_LINK))
30 Create(rootkey, subkey, access);
32 Open(rootkey, subkey, access);
42 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) { argument
44 return CreateWithDisposition(rootkey, subkey, &disposition_value, access);
48 DWORD* disposition, REGSAM access) {
50 DCHECK(rootkey && subkey && access && disposition);
54 REG_OPTION_NON_VOLATILE, access, NULL, &key_,
59 LONG RegKey::Open(HKEY rootkey, const wchar_t* subkey, REGSAM access) { argument
47 CreateWithDisposition(HKEY rootkey, const wchar_t* subkey, DWORD* disposition, REGSAM access) argument
68 CreateKey(const wchar_t* name, REGSAM access) argument
81 OpenKey(const wchar_t* name, REGSAM access) argument
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DSVGRenderStyle.h150 fill.access()->opacity = obj;
156 fill.access()->paint = obj;
162 stroke.access()->opacity = obj;
168 stroke.access()->paint = obj;
174 stroke.access()->dashArray = obj;
180 stroke.access()->miterLimit = obj;
186 stroke.access()->width = obj;
192 stroke.access()->dashOffset = obj;
198 text.access()->kerning = obj;
204 stops.access()
[all...]
H A DDataRef.h38 T* access() function in class:WebCore::DataRef
H A DRenderStyle.h88 group.access()->variable = value;
577 FillLayer* accessBackgroundLayers() { return &(m_background.access()->m_background); }
591 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); }
826 rareNonInheritedData.access()->m_dashboardRegions.clear();
827 rareNonInheritedData.access()->m_dashboardRegions.append(region);
921 inherited.access()->font = Font(v, inherited->font.letterSpacing(), inherited->font.wordSpacing());
944 void setWordSpacing(int v) { inherited.access()->font.setWordSpacing(v); }
945 void setLetterSpacing(int v) { inherited.access()->font.setLetterSpacing(v); }
947 void clearBackgroundLayers() { m_background.access()->m_background = FillLayer(BackgroundFillLayer); }
948 void inheritBackgroundLayers(const FillLayer& parent) { m_background.access()
[all...]
/external/valgrind/main/gdbserver_tests/
H A Dmcwatchpoints.stdoutB.exp6 Hardware access (read/write) watchpoint 3: undefined[4]
14 Hardware access (read/write) watchpoint 3: undefined[4]
19 Hardware access (read/write) watchpoint 3: undefined[4]
/external/webkit/Source/WebKit/chromium/src/
H A DExtensions3DChromium.cpp80 void* Extensions3DChromium::mapBufferSubDataCHROMIUM(unsigned target, int offset, int size, unsigned access) argument
82 return m_internal->mapBufferSubDataCHROMIUM(target, offset, size, access);
90 void* Extensions3DChromium::mapTexSubImage2DCHROMIUM(unsigned target, int level, int xoffset, int yoffset, int width, int height, unsigned format, unsigned type, unsigned access) argument
92 return m_internal->mapTexSubImage2DCHROMIUM(target, level, xoffset, yoffset, width, height, format, type, access);
/external/v8/src/
H A Dexecution.cc343 ExecutionAccess access(isolate_);
350 ExecutionAccess access(isolate_);
351 if (has_pending_interrupts(access)) {
352 set_interrupt_limits(access);
358 ExecutionAccess access(isolate_);
374 ExecutionAccess access(isolate_);
375 reset_limits(access);
380 ExecutionAccess access(isolate_);
381 return should_postpone_interrupts(access);
386 ExecutionAccess access(isolate
[all...]
/external/chromium/net/disk_cache/
H A Dcache_util_win.cc64 // There is an error, but we share delete access so let's see if there is a
69 DWORD access = SYNCHRONIZE; local
71 name.value().c_str(), access, sharing, NULL, OPEN_EXISTING, 0, NULL));
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DExtensions3DChromium.h62 void* mapBufferSubDataCHROMIUM(unsigned target, int offset, int size, unsigned access);
64 void* mapTexSubImage2DCHROMIUM(unsigned target, int level, int xoffset, int yoffset, int width, int height, unsigned format, unsigned type, unsigned access);
/external/zlib/src/examples/
H A Dzran.c1 /* zran.c -- example of zlib/gzip stream indexing and random access
7 for random access of a compressed file. A file containing a zlib or gzip
9 its entirety, and an index built with access points about every SPAN bytes
14 An access point can be created at the start of any deflate block, by saving
21 a new access point. If so, that point is saved in a data structure that
34 requests for random access reads from the compressed data would try to use
39 access, mainly copying the 32K byte dictionary. So if small pieces of the
44 not be constrained to have access points at block boundaries, but requires
45 more memory per access point, and also cannot be saved to file due to the
57 #define SPAN 1048576L /* desired distance between access point
70 struct access { struct
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTestShellGtk.cpp121 if (access(fonts[i], R_OK)) {
144 && access(font, R_OK) < 0)
147 if (access(font, R_OK) < 0) {
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
H A Dcwg1170.cpp4 # error No support for access control as part of SFINAE?
/external/oprofile/libpopt/
H A Dfindme.c39 if (!access(buf, X_OK))
/external/valgrind/main/drd/tests/
H A Datomic_var.c23 has built-in functions for atomic memory access.
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestRemoteCall.java98 store.exposeObject("access", new ServerAccessImpl());
113 ServerAccess access = store.getExposedObject("access", ServerAccess.class, true);
114 boolean result = access.attachChild("Models/Oto/Oto.mesh.xml");
/external/valgrind/main/coregrind/m_initimg/
H A Dinitimg-pathscan.c116 if (VG_(access)(buf, True/*r*/, False/*w*/, True/*x*/) == 0) {
120 } else if (VG_(access)(buf, True/*r*/, False/*w*/, False/*x*/) == 0
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dconnect.h39 // access[i]: accessibility of state i.
44 SccVisitor(vector<StateId> *scc, vector<bool> *access, argument
46 : scc_(scc), access_(access), coaccess_(coaccess), props_(props) {}
190 vector<StateId> *scc_stack_; // SCC stack (w/ random access)
205 vector<bool> access; local
208 SccVisitor<Arc> scc_visitor(0, &access, &coaccess, &props);
211 for (StateId s = 0; s < (StateId)access.size(); ++s)
212 if (!access[s] || !coaccess[s])
/external/chromium/base/
H A Dshared_memory_win.cc161 DWORD access = STANDARD_RIGHTS_REQUIRED | FILE_MAP_READ; local
166 access |= FILE_MAP_WRITE;
180 &result, access, FALSE, options))

Completed in 886 milliseconds

12345678910