/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
Field.java | 308 String access = ""; local 310 access += JDWPConstants.FieldAccess 314 access += JDWPConstants.FieldAccess 318 access += JDWPConstants.FieldAccess 323 access += JDWPConstants.FieldAccess 328 access += JDWPConstants.FieldAccess 333 access += JDWPConstants.FieldAccess 338 access += JDWPConstants.FieldAccess 343 return str + access;
|
/external/chromium_org/base/memory/ |
shared_memory_win.cc | 225 DWORD access = FILE_MAP_READ; local 230 access |= FILE_MAP_WRITE; 244 &result, access, FALSE, options))
|
/external/chromium_org/base/ |
tools_sanity_unittest.cc | 190 int* volatile access = &array[5]; local 191 *access = 43; 204 int* volatile access = g_asan_test_global_array - 1; local 205 *access = 43;
|
/external/chromium_org/net/disk_cache/blockfile/ |
file_win.cc | 84 DWORD access = GENERIC_READ | GENERIC_WRITE | DELETE; local 86 base::File(CreateFile(name.value().c_str(), access, sharing, NULL, 97 base::File(CreateFile(name.value().c_str(), access, sharing, NULL,
|
/external/chromium_org/sandbox/win/src/ |
policy_low_level_unittest.cc | 209 unsigned long access = 0; local 212 POLPARAM(access) // Argument 1 219 access = 24; 224 access = 42; 229 access = 24; 235 access = 42; 258 unsigned long access = 0; local 263 POLPARAM(access) // Argument 1 271 access = 24; 276 access = 24 [all...] |
target_process.cc | 262 DWORD access = FILE_MAP_READ | FILE_MAP_WRITE; local 266 &target_shared_section, access, FALSE, 0)) {
|
Wow64.cc | 103 DWORD access = EVENT_MODIFY_STATE | SYNCHRONIZE; local 105 &remote_load, access, FALSE, 0)) 108 &remote_continue, access, FALSE, 0))
|
/external/chromium_org/v8/test/cctest/compiler/ |
test-js-context-specialization.cc | 97 ContextAccess access = OpParameter<ContextAccess>(r.replacement()); local 98 CHECK_EQ(Context::GLOBAL_EVAL_FUN_INDEX, access.index()); 99 CHECK_EQ(0, access.depth()); 100 CHECK_EQ(false, access.immutable()); 177 ContextAccess access = OpParameter<ContextAccess>(r.replacement()); local 178 CHECK_EQ(Context::GLOBAL_EVAL_FUN_INDEX, access.index()); 179 CHECK_EQ(0, access.depth()); 180 CHECK_EQ(false, access.immutable());
|
/external/clang/test/CodeGenCXX/ |
microsoft-abi-vtables-virtual-inheritance-vtordisps.cpp | 453 namespace access { namespace 466 // MANGLING-DAG: @"\01?prot@B@access@@$2PPPPPPPM@A@AEXXZ" 469 // MANGLING-DAG: @"\01?priv@B@access@@$0PPPPPPPM@A@AEXXZ" 477 // MANGLING-DAG: @"\01?prot@B@access@@$R277PPPPPPPM@7AEXXZ" 478 // MANGLING-DAG: @"\01?priv@B@access@@$R077PPPPPPPM@7AEXXZ"
|
/external/deqp/framework/delibs/deutil/ |
deFile.c | 70 /* Read, write or read and write access is required. */ 242 DWORD access = 0; local 246 /* Read, write or read and write access is required. */ 260 access |= GENERIC_READ; 263 access |= GENERIC_WRITE; 286 handle = CreateFile(filename, access, FILE_SHARE_DELETE|FILE_SHARE_READ|FILE_SHARE_WRITE, DE_NULL, create, FILE_ATTRIBUTE_NORMAL, DE_NULL);
|
/external/deqp/modules/glshared/ |
glsRandomShaderProgram.cpp | 186 rsg::ExecValueAccess access = m_execCtx.getValue(attribVar); local 196 access.component(0).asFloat(ndx) = attribValue[0]; 197 if (numComponents >= 2) access.component(1).asFloat(ndx) = attribValue[1]; 198 if (numComponents >= 3) access.component(2).asFloat(ndx) = attribValue[2]; 199 if (numComponents >= 4) access.component(3).asFloat(ndx) = attribValue[3]; 207 const rsg::ExecConstValueAccess access = m_execCtx.getValue(m_positionVar); local 214 packet->position[0] = access.component(0).asFloat(ndx); 215 packet->position[1] = access.component(1).asFloat(ndx); 216 packet->position[2] = access.component(2).asFloat(ndx); 217 packet->position[3] = access.component(3).asFloat(ndx) 227 const rsg::ExecConstValueAccess access = m_execCtx.getValue(var); local 265 rsg::ExecValueAccess access = m_execCtx.getValue(var); local [all...] |
/external/javassist/src/main/javassist/bytecode/analysis/ |
Executor.java | 56 * If a subroutine is passed, the access flags will be modified if this instruction accesses 424 access(index, Type.INTEGER, subroutine); method 786 access(index, type, subroutine); method 875 access(index, type, subroutine); method 980 private void access(int index, Type type, Subroutine subroutine) { method in class:Executor [all...] |
/external/chromium_org/base/files/ |
file_win.cc | 57 DWORD access = 0; local 59 access = GENERIC_WRITE; 61 DCHECK(!access); 62 access = FILE_APPEND_DATA; 65 access |= GENERIC_READ; 67 access |= FILE_WRITE_ATTRIBUTES; 69 access |= GENERIC_EXECUTE; 89 file_.Set(CreateFile(name.value().c_str(), access, sharing, NULL,
|
/external/chromium_org/chrome/common/extensions/api/file_browser_handlers/ |
file_browser_handler.cc | 80 const std::string& access) { 81 file_access_permission_flags_ |= GetAccessPermissionFlagFromString(access); 158 // Initialize access permissions (optional). 168 std::string access; local 169 if (!access_list_value->GetString(i, &access) || 170 result->AddFileAccessPermission(access)) { 182 // Initialize file filters (mandatory, unless "create" access is specified,
|
/external/chromium_org/chrome/installer/mini_installer/ |
decompress.cc | 69 DWORD access = 0; local 73 access = GENERIC_READ | GENERIC_WRITE; 75 access = GENERIC_WRITE; 77 access = GENERIC_READ; 87 HANDLE file = CreateFileW(path, access, FILE_SHARE_READ, NULL, disposition,
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
fuse.h | 216 // Called by access() 217 int (*access)(const char* path, int mode); member in struct:fuse_operations
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
utext.h | 24 * The Text Access API provides a means to allow text that is stored in alternative 29 * ICU Text Access allows other formats, such as UTF-8 or non-contiguous 41 * access to the actual text. 79 * or UTF-32, for example. When coding to the UText access API, no assumptions 107 * Most UText access functions have as their first parameter a (UText *) pointer, 349 * This is true for read access only with shallow clones, and for both read and 350 * write access with deep clones. 360 * @param readOnly TRUE to request that the cloned UText have read only access to the 681 * #define inline versions of selected performance-critical text access functions 1257 UTextAccess *access; member in struct:UTextFuncs [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/ |
nv30_miptree.c | 235 unsigned access = 0; local 242 access |= NOUVEAU_BO_RD; 244 access |= NOUVEAU_BO_WR; 246 ret = nouveau_bo_map(tx->tmp.bo, access, nv30->base.client);
|
nv30_winsys.h | 44 struct nouveau_bo *bo, uint32_t access) 46 nouveau_bufctx_refn(bufctx(push), bin, bo, access); local 51 struct nouveau_bo *bo, uint32_t offset, uint32_t access) 54 bo, offset, access | NOUVEAU_BO_LOW, 0, 0)->priv = NULL; 60 struct nouveau_bo *bo, uint32_t access, uint32_t vor, uint32_t tor) 63 bo, 0, access | NOUVEAU_BO_OR, vor, tor)->priv = NULL; 72 struct nouveau_bo *bo, uint32_t data, uint32_t access, 76 bo, data, access | NOUVEAU_BO_OR, vor, tor)->priv = NULL; 85 struct nouveau_bo *bo, uint32_t data, uint32_t access, 90 bo, data, access | NOUVEAU_BO_OR, vor, tor) [all...] |
/external/chromium_org/third_party/skia/src/gpu/gl/ |
GrGLProgramDesc.cpp | 103 const GrTextureAccess& access = effect->textureAccess(t); local 104 uint32_t configComponentMask = GrPixelConfigComponentMask(access.getTexture()->config()); 105 if (swizzle_requires_alpha_remapping(caps, configComponentMask, access.swizzleMask())) {
|
/external/chromium_org/v8/src/ |
hydrogen-load-elimination.cc | 52 FieldOf(l->access()), 66 FieldOf(s->access()), 203 DCHECK(!instr->access().IsInobject() || 204 instr->access().existing_inobject_property()); 206 int field = FieldOf(instr->access()); 230 if (instr->access().IsInobject() && 231 !instr->access().existing_inobject_property()) { 236 int field = FieldOf(instr->access()); 278 int field = FieldOf(s->access()); 288 HObjectAccess access = instr->access() local [all...] |
/external/deqp/framework/opengl/ |
gluTexture.cpp | 96 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local 97 gl.texImage1D(GL_TEXTURE_1D, levelNdx, m_format, access.getWidth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr()); 179 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local 180 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); 181 gl.texImage2D(GL_TEXTURE_2D, levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr()) 382 tcu::ConstPixelBufferAccess access = m_refTexture.getLevelFace(levelNdx, (tcu::CubeFace)face); local 501 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local 560 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local 620 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local 680 tcu::ConstPixelBufferAccess access = m_refTexture.getLevel(levelNdx); local [all...] |
/external/deqp/modules/egl/ |
teglColorClearCase.cpp | 104 tcu::PixelBufferAccess access = tcu::getSubregion(dst.getAccess(), clearIter->x, clearIter->y, 0, clearIter->width, clearIter->height, 1); local 105 tcu::clear(access, pixelFormat.convertColor(clearIter->color).toIVec()); 375 tcu::PixelBufferAccess access = tcu::getSubregion(refFrame.getAccess(), local 378 tcu::clear(access, pixelFmt.convertColor(packet.clears[clearNdx].color).toIVec());
|
/external/deqp/modules/gles31/functional/ |
es31fSSBOArrayLengthTests.cpp | 55 SSBOArrayLengthCase (Context& context, const char* name, const char* desc, ArrayAccess access, bool sized); 75 SSBOArrayLengthCase::SSBOArrayLengthCase (Context& context, const char* name, const char* desc, ArrayAccess access, bool sized) 77 , m_access (access) 288 SSBOArrayLengthCase::ArrayAccess access; member in struct:deqp::gles31::Functional::Qualifier 306 this->addChild(new SSBOArrayLengthCase(m_context, name.c_str(), desc.c_str(), qualifiers[qualifierNdx].access, arraysSized[sizeNdx]));
|
/external/fio/engines/ |
windowsaio.c | 157 DWORD access; local 187 access = GENERIC_READ; 189 access = (GENERIC_READ | GENERIC_WRITE); 196 f->hFile = CreateFile(f->file_name, access, sharemode,
|