HomeSort by: relevance | last modified time | path
    Searched defs:protection (Results 1 - 24 of 24) sorted by relevancy

  /src/games/warp/
util.c 157 mode_t protection; local
166 protection = 7 & (filestat.st_mode >>
170 if ((mod & protection) == mod)
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_procmaps.h 31 // Memory protection masks.
45 bool IsReadable() const { return protection & kProtectionRead; }
46 bool IsWritable() const { return protection & kProtectionWrite; }
47 bool IsExecutable() const { return protection & kProtectionExecute; }
48 bool IsShared() const { return protection & kProtectionShared; }
57 uptr protection; member in class:__sanitizer::MemoryMappedSegment
  /src/crypto/external/apache2/openssl/dist/crypto/cmp/
cmp_protect.c 25 * Calculate protection for |msg| according to |msg->header->protectionAlg|
31 * returns ASN1_BIT_STRING representing the protection on success, else NULL
60 unsigned char *protection = NULL; local
92 &protection, &sig_len))
99 if (!ASN1_BIT_STRING_set(prot, protection, sig_len)) {
105 OPENSSL_free(protection);
158 /* Add first ctx->cert and its chain if using signature-based protection */
190 * Create an X509_ALGOR structure for PasswordBasedMAC protection based on
239 * For the case of re-protection remove pre-existing protection
    [all...]
cmp_vfy.c 56 msg->header->protectionAlg, msg->protection,
81 ASN1_BIT_STRING *protection = NULL; local
84 /* generate expected protection for the message */
85 if ((protection = ossl_cmp_calc_protection(ctx, msg)) == NULL)
86 return 0; /* failed to generate protection string! */
88 valid = msg->protection != NULL && msg->protection->length >= 0
89 && msg->protection->type == protection->type
90 && msg->protection->length == protection->lengt
    [all...]
cmp_local.h 63 * accept missing or invalid protection of regular error messages, negative
76 * when validating message protection; this is used for 3GPP-style E.7
82 X509 *cert; /* protection cert used to identify and sign for MSG_SIG_ALG */
83 STACK_OF(X509) *chain; /* (cached) chain of protection cert including it */
515 * -- algorithm used for calculation of protection bits
518 * -- to identify specific keys used for protection
525 * -- nonces used to provide replay protection, senderNonce
718 * protection [0] PKIProtection OPTIONAL,
726 ASN1_BIT_STRING *protection; /* 0 */ member in struct:ossl_cmp_msg_st
  /src/crypto/external/bsd/openssl/dist/crypto/cmp/
cmp_protect.c 24 * Calculate protection for given PKImessage according to
28 * returns ASN1_BIT_STRING representing the protection on success, else NULL
57 unsigned char *protection = NULL; local
89 &protection, &sig_len))
97 if (!ASN1_BIT_STRING_set(prot, protection, sig_len)) {
103 OPENSSL_free(protection);
138 /* Add first ctx->cert and its chain if using signature-based protection */
185 * Create an X509_ALGOR structure for PasswordBasedMAC protection based on
262 * For the case of re-protection remove pre-existing protection
    [all...]
cmp_vfy.c 55 msg->header->protectionAlg, msg->protection,
79 ASN1_BIT_STRING *protection = NULL; local
82 /* generate expected protection for the message */
83 if ((protection = ossl_cmp_calc_protection(ctx, msg)) == NULL)
84 return 0; /* failed to generate protection string! */
86 valid = msg->protection != NULL && msg->protection->length >= 0
87 && msg->protection->type == protection->type
88 && msg->protection->length == protection->lengt
    [all...]
cmp_local.h 60 * accept missing or invalid protection of regular error messages, negative
72 * when validating message protection; this is used for 3GPP-style E.7
78 X509 *cert; /* protection cert used to identify and sign for MSG_SIG_ALG */
79 STACK_OF(X509) *chain; /* (cached) chain of protection cert including it */
459 * -- algorithm used for calculation of protection bits
462 * -- to identify specific keys used for protection
469 * -- nonces used to provide replay protection, senderNonce
662 * protection [0] PKIProtection OPTIONAL,
670 ASN1_BIT_STRING *protection; /* 0 */ member in struct:ossl_cmp_msg_st
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_procmaps.h 31 // Memory protection masks.
45 bool IsReadable() const { return protection & kProtectionRead; }
46 bool IsWritable() const { return protection & kProtectionWrite; }
47 bool IsExecutable() const { return protection & kProtectionExecute; }
48 bool IsShared() const { return protection & kProtectionShared; }
57 uptr protection; member in class:__sanitizer::MemoryMappedSegment
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_procmaps.h 31 // Memory protection masks.
45 bool IsReadable() const { return protection & kProtectionRead; }
46 bool IsWritable() const { return protection & kProtectionWrite; }
47 bool IsExecutable() const { return protection & kProtectionExecute; }
48 bool IsShared() const { return protection & kProtectionShared; }
57 uptr protection; member in class:__sanitizer::MemoryMappedSegment
  /src/sys/uvm/
uvm_map.h 126 * and user-exported inheritance and protection information.
150 vm_prot_t protection; /* protection code */ member in struct:vm_map_entry
151 vm_prot_t max_protection; /* maximum protection */
  /src/crypto/external/bsd/openssl/dist/test/
cmp_protect_test.c 21 /* for protection tests */
78 ASN1_BIT_STRING *protection = local
80 int res = TEST_ptr_null(protection);
82 ASN1_BIT_STRING_free(protection);
88 ASN1_BIT_STRING *protection = local
90 int res = TEST_ptr(protection)
91 && TEST_true(ASN1_STRING_cmp(protection,
92 fixture->msg->protection) == 0);
94 ASN1_BIT_STRING_free(protection);
103 ASN1_BIT_STRING *protection,
132 ASN1_BIT_STRING *protection = local
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/interception/
interception_win.cc 658 // Change memory protection to writable.
659 DWORD protection = 0;
660 if (!ChangeMemoryProtection(header, patch_length, &protection))
669 // Restore previous memory protection.
670 if (!RestoreMemoryProtection(header, patch_length, protection))
700 // Change memory protection to writable.
701 DWORD protection = 0; local
702 if (!ChangeMemoryProtection(old_func, kJumpInstructionLength, &protection))
708 // Restore previous memory protection.
709 if (!RestoreMemoryProtection(old_func, kJumpInstructionLength, protection))
807 DWORD protection = 0; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
cmp_protect_test.c 22 /* for protection tests */
82 ASN1_BIT_STRING *protection = ossl_cmp_calc_protection(fixture->cmp_ctx, fixture->msg); local
83 int res = TEST_ptr_null(protection);
85 ASN1_BIT_STRING_free(protection);
91 ASN1_BIT_STRING *protection = ossl_cmp_calc_protection(fixture->cmp_ctx, fixture->msg); local
92 int res = TEST_ptr(protection)
93 && TEST_true(ASN1_STRING_cmp(protection,
94 fixture->msg->protection)
97 ASN1_BIT_STRING_free(protection);
106 ASN1_BIT_STRING *protection,
123 ASN1_BIT_STRING *protection = ossl_cmp_calc_protection(fixture->cmp_ctx, fixture->msg); local
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/interception/
interception_win.cpp 709 // Change memory protection to writable.
710 DWORD protection = 0;
711 if (!ChangeMemoryProtection(header, patch_length, &protection))
720 // Restore previous memory protection.
721 if (!RestoreMemoryProtection(header, patch_length, protection))
751 // Change memory protection to writable.
752 DWORD protection = 0; local
753 if (!ChangeMemoryProtection(old_func, kJumpInstructionLength, &protection))
759 // Restore previous memory protection.
760 if (!RestoreMemoryProtection(old_func, kJumpInstructionLength, protection))
858 DWORD protection = 0; local
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/interception/
interception_win.cpp 766 // Change memory protection to writable.
767 DWORD protection = 0;
768 if (!ChangeMemoryProtection(header, patch_length, &protection))
777 // Restore previous memory protection.
778 if (!RestoreMemoryProtection(header, patch_length, protection))
808 // Change memory protection to writable.
809 DWORD protection = 0; local
810 if (!ChangeMemoryProtection(old_func, kJumpInstructionLength, &protection))
816 // Restore previous memory protection.
817 if (!RestoreMemoryProtection(old_func, kJumpInstructionLength, protection))
915 DWORD protection = 0; local
    [all...]
  /src/external/gpl3/gdb/dist/sim/ppc/
vm.c 67 /* Protection table:
179 int protection; member in struct:_om_page_tlb_entry
653 page_tlb_entry->protection = om_pte_1_pp(pte_1);
782 [page_tlb_entry->protection]
833 /* protection information */
  /src/external/gpl3/gdb.old/dist/sim/ppc/
vm.c 67 /* Protection table:
179 int protection; member in struct:_om_page_tlb_entry
653 page_tlb_entry->protection = om_pte_1_pp(pte_1);
782 [page_tlb_entry->protection]
833 /* protection information */
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.cpp 2280 // extend this protection.
2291 PeepholeProtection protection; local
2292 protection.Inst = inst;
2293 return protection;
2296 void CodeGenFunction::unprotectFromPeepholes(PeepholeProtection protection) {
2297 if (!protection.Inst) return;
2300 protection.Inst->eraseFromParent();
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
amdgpu_smu7_hwmgr.c 1255 bool protection; local
1263 protection = false;
1267 protection = true;
1271 protection = true;
1276 protection = true;
1280 /* Order matters - don't enable thermal protection for the wrong source. */
1281 if (protection) {
  /src/external/gpl3/gdb/dist/gdb/
gnu-nat.c 2324 vm_prot_t protection;
2376 vm_prot_t protection;
2388 &protection,
2419 region_element->protection = protection;
2437 if (!(scan->protection & VM_PROT_WRITE))
2443 scan->protection | VM_PROT_WRITE);
2457 if (!(scan->protection & VM_PROT_WRITE))
2463 scan->protection);
2624 vm_prot_t protection;
2289 vm_prot_t protection; member in struct:vm_region_list
2341 vm_prot_t protection; local
2588 vm_prot_t protection; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
gnu-nat.c 2319 vm_prot_t protection;
2371 vm_prot_t protection;
2383 &protection,
2414 region_element->protection = protection;
2432 if (!(scan->protection & VM_PROT_WRITE))
2438 scan->protection | VM_PROT_WRITE);
2452 if (!(scan->protection & VM_PROT_WRITE))
2458 scan->protection);
2619 vm_prot_t protection;
2284 vm_prot_t protection; member in struct:vm_region_list
2336 vm_prot_t protection; local
2583 vm_prot_t protection; local
    [all...]
  /src/sys/dev/i2o/
i2o.h 510 u_int8_t protection; member in struct:i2o_param_hba_scsi_ctlr_info
  /src/external/bsd/wpa/dist/wpa_supplicant/
ctrl_iface.c 10373 bool protection = false; local
10425 tok_s = os_strstr(cmd, " protection=");
10427 protection = atoi(tok_s + os_strlen(" protection="));
10439 flow_type, flow_id, protection, twt_channel,

Completed in 65 milliseconds