/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_add_filter_by_name.c | 45 struct { const char *name; int (*setter)(struct archive *); } names[] = 70 return ((names[i].setter)(a)); in archive_write_add_filter_by_name() 46 struct { const char *name; int (*setter)(struct archive *); } names[] = global() member
|
H A D | archive_write_add_filter.c | 41 struct { int code; int (*setter)(struct archive *); } codes[] = 66 return ((codes[i].setter)(a)); in archive_write_add_filter() 42 struct { int code; int (*setter)(struct archive *); } codes[] = global() member
|
H A D | archive_write_set_format_by_name.c | 44 struct { const char *name; int (*setter)(struct archive *); } names[] = 87 return ((names[i].setter)(a)); in archive_write_set_format_by_name() 45 struct { const char *name; int (*setter)(struct archive *); } names[] = global() member
|
H A D | archive_write_set_format.c | 42 struct { int code; int (*setter)(struct archive *); } codes[] = 75 return ((codes[i].setter)(a)); in archive_write_set_format() 43 struct { int code; int (*setter)(struct archive *); } codes[] = global() member
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaPseudoObject.cpp | 617 ObjCMethodDecl *setter = RefExpr->getImplicitPropertySetter(); in findGetter() local 618 assert(setter && "both setter and getter are null - cannot happen"); in findGetter() 620 setter->getSelector().getIdentifierInfoForSlot(0); in findGetter() 641 if (ObjCMethodDecl *setter = RefExpr->getImplicitPropertySetter()) { in findSetter() local 642 Setter = setter; in findSetter() 643 SetterSelector = setter->getSelector(); in findSetter() 662 if (ObjCMethodDecl *setter = in findSetter() local 664 if (setter->isPropertyAccessor() && warn) in findSetter() 666 dyn_cast<ObjCInterfaceDecl>(setter->getDeclContext())) { in findSetter() 677 if (prop != prop1 && (prop1->getSetterMethodDecl() == setter)) { in findSetter() [all …]
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_CTX_set_min_proto_version.pod | 51 These setter functions return 1 on success and 0 on failure. The getter 66 The setter functions were added in OpenSSL 1.1.0. The getter functions
|
H A D | OSSL_PARAM.pod | 37 (the I<setter>) that has intimate knowledge about the object that can 58 build up its own B<OSSL_PARAM> array to pass down to a I<setter> or 241 Keys that a I<setter> or I<responder> doesn't recognise should simply 247 If the keys that a called I<setter> recognises form a consistent
|
H A D | X509_STORE_get0_param.pod | 7 - X509_STORE setter and getter functions
|
H A D | CT_POLICY_EVAL_CTX_new.pod | 105 Each setter has a matching getter for accessing the current value.
|
H A D | X509_LOOKUP_meth_new.pod | 171 the function set by the corresponding setter.
|
/freebsd/crypto/openssl/doc/designs/ |
H A D | fast-param-find.md | 18 'functions' => 'both', # getter or setter being the other options 139 - readonly: create a getter but not a setter 145 The getter and setter functions will be pre-populated with some local variable:
|
H A D | fips_indicator.md | 75 - To control an algorithm context's checks via code requires a setter for each individual check e.g… 84 The setter is initially -1 (unknown) and can be set to 0 or 1 via a set_ctx call. 85 If the setter is needed it must be set BEFORE the FIPS related check is done. 87 If the FIPS related approved mode check fails and either the ctx setter is zero 89 If neither the setter of config option are zero then the algorithm should fail.
|
H A D | functions-for-explicitly-fetched-signature-algorithms.md | 102 /* Signature setter */
|
/freebsd/contrib/wpa/wpa_supplicant/dbus/ |
H A D | dbus_new_helpers.h | 97 WPADBusPropertyAccessor setter; member
|
H A D | dbus_new_introspect.c | 92 dsc->setter ? "write" : ""); in add_property()
|
H A D | dbus_new_helpers.c | 206 if (dsc->setter == NULL) { in properties_set() 218 if (dsc->setter(dsc, &iter, &error, user_data) == TRUE) { in properties_set()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | BuiltinTypes.def | 296 // of a setter and a getter, with the setter used if the
|
/freebsd/tests/atf_python/sys/netpfil/ipfw/ |
H A D | insns.py | 329 @prob.setter 347 @ip.setter
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 8128 clang::ObjCMethodDecl *setter = nullptr; in AddObjCClassProperty() local 8129 setter = isInstance ? class_interface_decl->lookupInstanceMethod(setter_sel) in AddObjCClassProperty() 8131 if (!setter_sel.isNull() && !setter) { in AddObjCClassProperty() 8142 setter = in AddObjCClassProperty() 8144 setter->setDeclName(setter_sel); in AddObjCClassProperty() 8145 setter->setReturnType(result_type); in AddObjCClassProperty() 8146 setter->setDeclContext(class_interface_decl); in AddObjCClassProperty() 8147 setter->setInstanceMethod(isInstance); in AddObjCClassProperty() 8148 setter->setVariadic(isVariadic); in AddObjCClassProperty() 8149 setter->setPropertyAccessor(isPropertyAccessor); in AddObjCClassProperty() [all …]
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | fips_module.pod | 483 setter. Overriding the check means that the algorithm is not FIPS compliant. 488 An example of an algorithm context setter is "key-check"
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGObjC.cpp | 1402 Expr *setter = PID->getSetterCXXAssignment(); in hasTrivialSetExpr() local 1403 if (!setter) return true; in hasTrivialSetExpr() 1413 if (CallExpr *call = dyn_cast<CallExpr>(setter)) { in hasTrivialSetExpr() 1421 assert(isa<ExprWithCleanups>(setter)); in hasTrivialSetExpr()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | NumericalStabilitySanitizer.cpp | 1960 #define MOVE_FLAG(attr, setter) \ in moveFastMathFlags() argument 1963 FMF.set##setter(); \ in moveFastMathFlags()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticCommonKinds.td | 58 "method name referenced in property setter attribute "
|
H A D | DiagnosticASTKinds.td | 960 "readwrite|retain|copy|nonatomic|setter|atomic|weak|strong|" 970 "readwrite|retain|copy|nonatomic|setter|atomic|weak|strong|"
|
/freebsd/contrib/llvm-project/clang/include/clang-c/ |
H A D | Index.h | 6231 const CXIdxEntityInfo *setter; member
|