| /freebsd/lib/libc/posix1e/ |
| H A D | acl_from_text.c | 47 static acl_tag_t acl_string_to_tag(char *tag, char *qualifier); 53 acl_string_to_tag(char *tag, char *qualifier) in acl_string_to_tag() argument 56 if (*qualifier == '\0') { in acl_string_to_tag() 86 char *tag, *qualifier, *permission; in _posix1e_acl_entry_from_text() local 108 qualifier = strsep(&entry, ":"); in _posix1e_acl_entry_from_text() 109 if (qualifier == NULL) { in _posix1e_acl_entry_from_text() 113 qualifier = string_skip_whitespace(qualifier); in _posix1e_acl_entry_from_text() 114 string_trim_trailing_whitespace(qualifier); in _posix1e_acl_entry_from_text() 124 t = acl_string_to_tag(tag, qualifier); in _posix1e_acl_entry_from_text() 141 if (*qualifier != '\0') { in _posix1e_acl_entry_from_text() [all …]
|
| /freebsd/crypto/openssl/test/recipes/ |
| H A D | 02-test_ordinals.t | 24 my $qualifier = ""; 48 || ($cnt == $number && ($qualifier ne $newqual 49 || $qualifier eq ""))) { 55 $qualifier = $newqual;
|
| /freebsd/sys/dev/ocs_fc/ |
| H A D | ocs_domain.c | 1398 char qualifier[80]; in ocs_mgmt_domain_get() local 1403 snprintf(qualifier, sizeof(qualifier), "%s/domain[%d]", parent, domain->instance_index); in ocs_mgmt_domain_get() 1406 if (ocs_strncmp(name, qualifier, strlen(qualifier)) == 0) { in ocs_mgmt_domain_get() 1407 char *unqualified_name = name + strlen(qualifier) +1; in ocs_mgmt_domain_get() 1451 retval = sport->mgmt_functions->get_handler(textbuf, qualifier, name, sport); in ocs_mgmt_domain_get() 1504 char qualifier[80]; in ocs_mgmt_domain_set() local 1507 snprintf(qualifier, sizeof(qualifier), "%s/domain[%d]", parent, domain->instance_index); in ocs_mgmt_domain_set() 1510 if (ocs_strncmp(name, qualifier, strlen(qualifier)) == 0) { in ocs_mgmt_domain_set() 1520 retval = sport->mgmt_functions->set_handler(qualifier, name, value, sport); in ocs_mgmt_domain_set() 1540 char qualifier[80]; in ocs_mgmt_domain_exec() local [all …]
|
| H A D | ocs_sport.c | 1292 char qualifier[80]; in ocs_mgmt_sport_get() local 1297 snprintf(qualifier, sizeof(qualifier), "%s/sport[%d]", parent, sport->instance_index); in ocs_mgmt_sport_get() 1300 if (ocs_strncmp(name, qualifier, strlen(qualifier)) == 0) { in ocs_mgmt_sport_get() 1301 char *unqualified_name = name + strlen(qualifier) +1; in ocs_mgmt_sport_get() 1345 retval = node->mgmt_functions->get_handler(textbuf, qualifier, name, node); in ocs_mgmt_sport_get() 1398 char qualifier[80]; in ocs_mgmt_sport_set() local 1401 snprintf(qualifier, sizeof(qualifier), "%s/sport[%d]", parent, sport->instance_index); in ocs_mgmt_sport_set() 1404 if (ocs_strncmp(name, qualifier, strlen(qualifier)) == 0) { in ocs_mgmt_sport_set() 1410 retval = node->mgmt_functions->set_handler(qualifier, name, value, node); in ocs_mgmt_sport_set() 1428 char qualifier[80]; in ocs_mgmt_sport_exec() local [all …]
|
| H A D | ocs_mgmt.c | 296 char qualifier[6]; in ocs_mgmt_get() local 302 snprintf(qualifier, sizeof(qualifier), "/ocs"); in ocs_mgmt_get() 305 if (ocs_strncmp(name, qualifier, strlen(qualifier)) == 0) { in ocs_mgmt_get() 306 char *unqualified_name = name + strlen(qualifier) + 1; in ocs_mgmt_get() 319 retval = ocs->mgmt_functions->get_handler(textbuf, qualifier, (char*)name, ocs); in ocs_mgmt_get() 324 retval = ocs->tgt_mgmt_functions->get_handler(textbuf, qualifier, in ocs_mgmt_get() 335 retval = domain->mgmt_functions->get_handler(textbuf, qualifier, (char*)name, domain); in ocs_mgmt_get() 380 char qualifier[80]; in ocs_mgmt_set() local 383 snprintf(qualifier, sizeof(qualifier), "/ocs"); in ocs_mgmt_set() 386 if (ocs_strncmp(name, qualifier, strlen(qualifier)) == 0) { in ocs_mgmt_set() [all …]
|
| H A D | ocs_io.c | 425 char qualifier[80]; in ocs_mgmt_io_get() local 429 snprintf(qualifier, sizeof(qualifier), "%s/io[%d]", parent, io->instance_index); in ocs_mgmt_io_get() 432 if (ocs_strncmp(name, qualifier, strlen(qualifier)) == 0) { in ocs_mgmt_io_get() 433 char *unqualified_name = name + strlen(qualifier) +1; in ocs_mgmt_io_get()
|
| H A D | ocs_node.c | 1736 char qualifier[80]; in ocs_mgmt_node_get() local 1741 ocs_snprintf(qualifier, sizeof(qualifier), "%s/node[%d]", parent, node->instance_index); in ocs_mgmt_node_get() 1744 if (ocs_strncmp(name, qualifier, strlen(qualifier)) == 0) { in ocs_mgmt_node_get() 1745 char *unqualified_name = name + strlen(qualifier) +1; in ocs_mgmt_node_get() 1819 retval = io->mgmt_functions->get_handler(textbuf, qualifier, name, io); in ocs_mgmt_node_get() 1893 char qualifier[80]; in ocs_mgmt_node_set() local 1896 ocs_snprintf(qualifier, sizeof(qualifier), "%s/node[%d]", parent, node->instance_index); in ocs_mgmt_node_set() 1899 if (ocs_strncmp(name, qualifier, strlen(qualifier)) == 0) { in ocs_mgmt_node_set() 1903 retval = io->mgmt_functions->set_handler(qualifier, name, value, io); in ocs_mgmt_node_set() 1922 char qualifier[80]; in ocs_mgmt_node_exec() local [all …]
|
| /freebsd/contrib/processor-trace/libipt/internal/include/ |
| H A D | pt_block_cache.h | 151 uint32_t qualifier:3; member 171 return (enum pt_bcache_qualifier) bce.qualifier; in pt_bce_qualifier()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ItaniumMangle.cpp | 493 void mangleUnresolvedPrefix(NestedNameSpecifier *qualifier, 495 void mangleUnresolvedName(NestedNameSpecifier *qualifier, 545 void manglePrefix(NestedNameSpecifier *qualifier); 591 NestedNameSpecifier *qualifier, 1348 void CXXNameMangler::mangleUnresolvedPrefix(NestedNameSpecifier *qualifier, in mangleUnresolvedPrefix() argument 1365 switch (qualifier->getKind()) { in mangleUnresolvedPrefix() 1380 if (qualifier->getPrefix()) in mangleUnresolvedPrefix() 1381 mangleUnresolvedPrefix(qualifier->getPrefix(), in mangleUnresolvedPrefix() 1385 mangleSourceNameWithAbiTags(qualifier->getAsNamespace()); in mangleUnresolvedPrefix() 1388 if (qualifier->getPrefix()) in mangleUnresolvedPrefix() [all …]
|
| /freebsd/contrib/processor-trace/libipt/test/src/ |
| H A D | ptunit-block_cache.c | 236 exp.qualifier = ptbq_decode; in add() 268 exp.qualifier = ptbq_again; in worker()
|
| /freebsd/contrib/processor-trace/libipt/src/ |
| H A D | pt_block_decoder.c | 1720 bce.qualifier = ptbq_again; in pt_blk_add_trampoline() 1730 bce.qualifier = ptbq_decode; in pt_blk_add_trampoline() 1750 bce.qualifier = ptbq_decode; in pt_blk_add_decode() 1831 bce.qualifier = ptbq_indirect; in pt_blk_proceed_no_event_fill_cache() 1839 bce.qualifier = ptbq_ind_call; in pt_blk_proceed_no_event_fill_cache() 1843 bce.qualifier = ptbq_return; in pt_blk_proceed_no_event_fill_cache() 1847 bce.qualifier = ptbq_cond; in pt_blk_proceed_no_event_fill_cache() 1853 bce.qualifier = ptbq_indirect; in pt_blk_proceed_no_event_fill_cache() 1865 bce.qualifier = ptbq_decode; in pt_blk_proceed_no_event_fill_cache()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TypeProperties.td | 582 def : Property<"qualifier", NestedNameSpecifier> { 594 return ctx.getElaboratedType(keyword, qualifier, namedType, 766 def : Property<"qualifier", NestedNameSpecifier> { 788 DependentTemplateStorage S(qualifier, identifier ? IdentifierOrOverloadedOperator(*identifier) : 922 def : Property<"qualifier", NestedNameSpecifier> { 928 return ctx.getDependentNameType(keyword, qualifier, name);
|
| H A D | PropertiesBase.td | 680 def : Property<"qualifier", NestedNameSpecifier> { 690 return ctx.getQualifiedTemplateName(qualifier, hasTemplateKeyword, 699 def : Property<"qualifier", NestedNameSpecifier> { 714 return ctx.getDependentTemplateName({qualifier, *identifier, HasTemplateKeyword}); 716 return ctx.getDependentTemplateName({qualifier, *operatorKind, HasTemplateKeyword});
|
| /freebsd/crypto/heimdal/doc/ |
| H A D | layman.asc | 1203 The OPTIONAL qualifier indicates that the value of a 1205 sequence. The DEFAULT qualifier also indicates that the 1210 OPTIONAL or DEFAULT qualifier, as well as of any component 1232 DEFAULT qualifier is absent from the sequence, 1237 qualifier is the default value, then the encoding 1243 with the DEFAULT qualifier is the default value, the 1297 The OPTIONAL qualifier indicates that the value of a 1299 The DEFAULT qualifier also indicates that the value of a 1314 DEFAULT qualifier is absent from the set, then the 1319 qualifier is the default value, then the encoding [all …]
|
| /freebsd/contrib/googletest/docs/reference/ |
| H A D | mocking.md | 29 …qualifier`*`)` | Marks the method with the given reference qualifier, for example `ref(&)` or …
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticFrontendKinds.td | 80 "the '__restrict__' qualifier with the independent array arguments -- " 186 "qualifier 'const' is needed for variables in address space '%0'">;
|
| H A D | DiagnosticSemaKinds.td | 561 "'%0' type qualifier%s1 on return type %plural{1:has|:have}1 no effect">, 564 "'%0' qualifier%s1 on base class type %2 %plural{1:has|:have}1 no effect">, 1031 // __ptrauth qualifier 1038 "'__ptrauth' qualifier only applies to pointer or pointer sized integer " 1784 "%HasArcLifetime{has an ARC lifetime qualifier}|" 2188 "but function has %select{non-const lvalue|rvalue}2 ref-qualifier">; 2329 "'%0' qualifier is not allowed on a constructor">; 2331 "ref-qualifier '%select{&&|&}0' is not allowed on a constructor">; 2355 "'%0' qualifier is not allowed on a destructor">; 2357 "ref-qualifier '%select{&&|&}0' is not allowed on a destructor">; [all …]
|
| H A D | DiagnosticParseKinds.td | 35 def err_asm_duplicate_qual : Error<"duplicate asm qualifier '%0'">; 263 "'%0' qualifier may not appear after the virtual specifier '%1'">; 365 "'%0' qualifier may not be applied to a reference">; 456 "type name requires a specifier or qualifier">; 550 def err_objc_illegal_interface_qual : Error<"illegal interface qualifier">; 1751 "'__ptrauth' qualifier must take between 1 and 3 arguments">;
|
| /freebsd/contrib/libxo/xohtml/external/ |
| H A D | jquery.js | 5658 function winnow( elements, qualifier, keep ) { argument 5662 qualifier = qualifier || 0; 5664 if ( jQuery.isFunction( qualifier ) ) { 5666 var retVal = !!qualifier.call( elem, i, elem ); 5670 } else if ( qualifier.nodeType ) { 5672 return ( elem === qualifier ) === keep; 5675 } else if ( typeof qualifier === "string" ) { 5680 if ( isSimple.test( qualifier ) ) { 5681 return jQuery.filter(qualifier, filtered, !keep); 5683 qualifier = jQuery.filter( qualifier, filtered ); [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenCXXExpr.cpp | 78 bool hasQualifier, NestedNameSpecifier *qualifier, bool isArrow, in emitCXXMemberOrOperatorMemberCallExpr() argument
|
| /freebsd/contrib/bearssl/test/x509/ |
| H A D | alltests.txt | 688 ; contains no policy qualifier. 712 ; contains a qualifier distinct from id-qt-cps. This implies rejection
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kInstrFormats.td | 50 /// Form without size qualifier will adapt to operand size automatically, e.g.:
|
| /freebsd/contrib/libyaml/ |
| H A D | Changes | 360 Add `const` qualifier for `yaml_parser_set_input_string` parameter `input`.
|
| /freebsd/contrib/bearssl/src/x509/ |
| H A D | x509_minimal.t0 | 991 \ Policy qualifier "pointer to CPS" 1076 \ qualifier which is distinct from id-qt-cps (because id-qt-cps is 1095 \ qualifier ANY
|
| /freebsd/contrib/ntp/ntpdc/ |
| H A D | ntpdc-opts.def | 206 qualifier preceding the host name forces DNS resolution to the IPv4 namespace, 209 qualifier forces DNS resolution to the IPv6 namespace.
|