Home
last modified time | relevance | path

Searched refs:protect (Results 1 - 25 of 43) sorted by relevance

12

/third_party/vulkan-loader/scripts/
H A Dloader_extension_generator.py186 self.CommandData = namedtuple('CommandData', ['name', 'ext_name', 'ext_type', 'require', 'protect', 'return_type', 'handle_type', 'params', 'cdecl'])
188 self.ExtensionData = namedtuple('ExtensionData', ['name', 'type', 'protect', 'define', 'num_commands'])
333 protect=self.featureExtraProtect,
424 protect=self.featureExtraProtect,
435 protect=self.featureExtraProtect,
448 protect=self.featureExtraProtect,
460 protect=self.featureExtraProtect,
592 if cur_cmd.protect is not None:
593 table += '#if defined(%s)\n' % cur_cmd.protect
597 if cur_cmd.protect i
[all...]
H A Dcommon_codegen.py67 # Return appropriate feature protect string from 'platform' tag on feature
71 protect = None
73 protect = platform_dict[platform]
74 return protect
H A Dloader_genvk.py73 # Whether to disable inclusion protect in headers
74 protect = args.protect
123 protectFeature = protect
257 # protect - True if re-inclusion wrappers should be created
327 parser.add_argument('-noprotect', dest='protect', action='store_false',
H A Ddispatch_table_helper_generator.py180 def AddCommandToDispatchList(self, name, handle_type, protect, cmdinfo):
/third_party/node/deps/openssl/openssl/providers/common/
H A Dsecuritycheck.c26 * Set protect = 1 for encryption or signing operations, or 0 otherwise. See
31 int protect = 0; in ossl_rsa_check_key() local
35 protect = 1; in ossl_rsa_check_key()
41 protect = 1; in ossl_rsa_check_key()
64 if (protect ? (sz < 2048) : (sz < 1024)) { in ossl_rsa_check_key()
71 /* make protect used */ in ossl_rsa_check_key()
72 (void)protect; in ossl_rsa_check_key()
80 * protect should be 1 for any operations that need 112 bits of security
92 int ossl_ec_check_key(OSSL_LIB_CTX *ctx, const EC_KEY *ec, int protect) in ossl_ec_check_key() argument
133 if (protect in ossl_ec_check_key()
[all...]
/third_party/openssl/providers/common/
H A Dsecuritycheck.c26 * Set protect = 1 for encryption or signing operations, or 0 otherwise. See
31 int protect = 0; in ossl_rsa_check_key() local
35 protect = 1; in ossl_rsa_check_key()
41 protect = 1; in ossl_rsa_check_key()
64 if (protect ? (sz < 2048) : (sz < 1024)) { in ossl_rsa_check_key()
71 /* make protect used */ in ossl_rsa_check_key()
72 (void)protect; in ossl_rsa_check_key()
80 * protect should be 1 for any operations that need 112 bits of security
92 int ossl_ec_check_key(OSSL_LIB_CTX *ctx, const EC_KEY *ec, int protect) in ossl_ec_check_key() argument
133 if (protect in ossl_ec_check_key()
[all...]
/third_party/node/deps/v8/src/base/platform/
H A Dplatform-cygwin.cc50 uint8_t* RandomizedVirtualAlloc(size_t size, DWORD flags, DWORD protect, in RandomizedVirtualAlloc() argument
55 if (protect != PAGE_READWRITE) { in RandomizedVirtualAlloc()
56 base = VirtualAlloc(hint, size, flags, protect); in RandomizedVirtualAlloc()
61 base = VirtualAlloc(nullptr, size, flags, protect); in RandomizedVirtualAlloc()
110 DWORD protect = GetProtectionFromMemoryPermission(access); in Allocate() local
113 uint8_t* base = RandomizedVirtualAlloc(size, flags, protect, hint); in Allocate()
132 base = RandomizedVirtualAlloc(padded_size, flags, protect, hint); in Allocate()
140 VirtualAlloc(aligned_base, size, flags, protect)); in Allocate()
171 DWORD protect = GetProtectionFromMemoryPermission(access); in SetPermissions() local
172 return VirtualAlloc(address, size, MEM_COMMIT, protect) ! in SetPermissions()
[all...]
H A Dplatform-win32.cc869 DWORD protect) { in VirtualAllocWrapper()
871 return VirtualAlloc2(nullptr, address, size, flags, protect, NULL, 0); in VirtualAllocWrapper()
873 return VirtualAlloc(address, size, flags, protect); in VirtualAllocWrapper()
877 uint8_t* VirtualAllocWithHint(size_t size, DWORD flags, DWORD protect, in VirtualAllocWithHint() argument
879 LPVOID base = VirtualAllocWrapper(hint, size, flags, protect); in VirtualAllocWithHint()
883 base = VirtualAllocWrapper(nullptr, size, flags, protect); in VirtualAllocWithHint()
890 size_t page_size, DWORD flags, DWORD protect) { in AllocateInternal()
892 uint8_t* base = VirtualAllocWithHint(size, flags, protect, hint); in AllocateInternal()
912 base = VirtualAllocWithHint(padded_size, flags, protect, hint); in AllocateInternal()
921 VirtualAllocWrapper(aligned_base, size, flags, protect)); in AllocateInternal()
868 VirtualAllocWrapper(void* address, size_t size, DWORD flags, DWORD protect) VirtualAllocWrapper() argument
889 AllocateInternal(void* hint, size_t size, size_t alignment, size_t page_size, DWORD flags, DWORD protect) AllocateInternal() argument
944 DWORD protect = GetProtectionFromMemoryPermission(access); Allocate() local
999 DWORD protect = GetProtectionFromMemoryPermission(access); SetPermissions() local
1249 DWORD protect = GetProtectionFromMemoryPermission(access); Allocate() local
1265 DWORD protect = GetProtectionFromMemoryPermission(access); AllocateShared() local
[all...]
/third_party/lzma/CPP/Windows/
H A DFileMapping.h15 WRes Create(DWORD protect, UInt64 maxSize, LPCTSTR name) in Create() argument
17 _handle = ::CreateFileMapping(INVALID_HANDLE_VALUE, NULL, protect, (DWORD)(maxSize >> 32), (DWORD)maxSize, name); in Create()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dentity_db.py138 protect = info.elem.get('protect')
139 if protect:
140 self.addEntity(protect, 'dlink',
206 # Only get the protect strings and name from extensions
210 protect = info.elem.get('protect')
211 if protect:
212 self.addEntity(protect, 'dlink',
/third_party/skia/fuzz/
H A DFuzzCreateDDL.cpp140 GrProtected protect = GrProtected::kNo; in make_characterization() local
142 fuzz->nextEnum(&protect, GrProtected::kYes); in make_characterization()
149 false, true, protect); in make_characterization()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dgenerator.py663 protect = elem.get('protect')
664 if protect is not None:
665 body += '#ifdef {}\n'.format(protect)
688 if protect is not None:
756 protect = elem.get('protect')
757 if protect is not None:
758 decl += '#ifdef {}\n'.format(protect)
767 if protect i
[all...]
H A Dgenvk.py100 # Whether to disable inclusion protect in headers
101 protect = args.protect
150 protectFile = protect
960 - protect - True if re-inclusion wrappers should be created
1034 parser.add_argument('-noprotect', dest='protect', action='store_false',
/third_party/vulkan-headers/registry/
H A Dgenerator.py663 protect = elem.get('protect')
664 if protect is not None:
665 body += '#ifdef {}\n'.format(protect)
688 if protect is not None:
756 protect = elem.get('protect')
757 if protect is not None:
758 decl += '#ifdef {}\n'.format(protect)
767 if protect i
[all...]
/third_party/EGL/api/
H A Dgenheaders.py12 # protect - whether to use #ifndef protections
20 protect = True variable
194 protectFile = protect
195 protectFeature = protect
196 protectProto = protect
563 protect = False variable
/third_party/openGLES/xml/
H A Dgenglvnd.py12 # protect - whether to use #ifndef protections
20 protect = True variable
42 protect = False variable
238 protectFile = protect
239 protectFeature = protect
240 protectProto = protect
H A Dgenheaders.py12 # protect - whether to use #ifndef protections
20 protect = True variable
189 protectFile = protect
190 protectFeature = protect
191 protectProto = protect
521 protect = False variable
/third_party/skia/third_party/externals/opengl-registry/xml/
H A Dgenglvnd.py23 # protect - whether to use #ifndef protections
31 protect = True variable
53 protect = False variable
268 protectFile = protect
269 protectFeature = protect
270 protectProto = protect
H A Dgenheaders.py23 # protect - whether to use #ifndef protections
31 protect = True variable
53 protect = False variable
267 protectFile = protect
268 protectFeature = protect
269 protectProto = protect
/third_party/skia/third_party/externals/egl-registry/api/
H A Dgenheaders.py23 # protect - whether to use #ifndef protections
31 protect = True variable
53 protect = False variable
269 protectFile = protect
270 protectFeature = protect
271 protectProto = protect
/third_party/vk-gl-cts/scripts/khr_util/
H A Dregistry.py439 protect = eExtension.get('protect')
440 if protect is not None and protect not in available:
441 warnElem(eExtension, "Unavailable dependency %s", protect)
/third_party/python/Lib/test/
H A Dtest_sys_setprofile.py390 def protect(f, p): function
394 protect_ident = ident(protect)
406 protect(callable, p)
/third_party/ltp/tools/sparse/sparse-src/
H A Dpre-process.c72 stream->protect = NULL; \
81 stream->protect = NULL; \
82 else if (stream->protect) \
91 stream->protect = NULL; \
826 if (s->protect && !lookup_macro(s->protect)) in already_tokenized()
1588 if (!stream->protect) { in handle_ifndef()
1590 stream->protect = next->ident; in handle_ifndef()
1591 } else if (stream->protect == next->ident) { in handle_ifndef()
H A Dtoken.h61 struct ident *protect; member
/third_party/python/Modules/clinic/
H A D_winapi.c.h172 "CreateFileMapping($module, file_handle, security_attributes, protect,\n"
183 DWORD protect, DWORD max_size_high,
192 DWORD protect; in _winapi_CreateFileMapping() local
199 &file_handle, &security_attributes, &protect, &max_size_high, &max_size_low, _PyUnicode_WideCharString_Converter, &name)) { in _winapi_CreateFileMapping()
202 _return_value = _winapi_CreateFileMapping_impl(module, file_handle, security_attributes, protect, max_size_high, max_size_low, name); in _winapi_CreateFileMapping()

Completed in 23 milliseconds

12