Home
last modified time | relevance | path

Searched refs:operation (Results 1 – 25 of 777) sorted by relevance

12345678910>>...32

/freebsd/crypto/openssl/apps/
H A Dcms.c304 int operation = 0, ret = 1, rr_print = 0, rr_allorfirst = -1; in cms_main() local
342 operation = SMIME_ENCRYPT; in cms_main()
345 operation = SMIME_DECRYPT; in cms_main()
348 operation = SMIME_SIGN; in cms_main()
351 operation = SMIME_VERIFY; in cms_main()
354 operation = SMIME_RESIGN; in cms_main()
357 operation = SMIME_SIGN_RECEIPT; in cms_main()
360 operation = SMIME_VERIFY_RECEIPT; in cms_main()
367 operation = SMIME_DIGEST_CREATE; in cms_main()
370 operation = SMIME_DIGEST_VERIFY; in cms_main()
[all …]
H A Dsmime.c152 int flags = PKCS7_DETACHED, operation = 0, ret = 0, indef = 0; in smime_main() local
190 operation = SMIME_ENCRYPT; in smime_main()
193 operation = SMIME_DECRYPT; in smime_main()
196 operation = SMIME_SIGN; in smime_main()
199 operation = SMIME_RESIGN; in smime_main()
202 operation = SMIME_VERIFY; in smime_main()
205 operation = SMIME_PK7OUT; in smime_main()
373 if (!(operation & SMIME_SIGNERS) && (skkeys != NULL || sksigners != NULL)) { in smime_main()
377 if (!operation) { in smime_main()
383 if (operation & SMIME_SIGNERS) { in smime_main()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanShouldStopHere.cpp40 FrameComparison operation, Status &status) { in InvokeShouldStopHereCallback() argument
44 m_owner, m_flags, operation, status, m_baton); in InvokeShouldStopHereCallback()
59 ThreadPlan *current_plan, Flags &flags, FrameComparison operation, in DefaultShouldStopHereCallback() argument
68 if ((operation == eFrameCompareOlder && flags.Test(eStepOutAvoidNoDebug)) || in DefaultShouldStopHereCallback()
69 (operation == eFrameCompareYounger && flags.Test(eStepInAvoidNoDebug)) || in DefaultShouldStopHereCallback()
70 (operation == eFrameCompareSameParent && in DefaultShouldStopHereCallback()
95 ThreadPlan *current_plan, Flags &flags, FrameComparison operation, in DefaultStepFromHereCallback() argument
145 lldb_private::Flags &flags, lldb::FrameComparison operation, in QueueStepOutFromHerePlan() argument
150 m_owner, flags, operation, status, m_baton); in QueueStepOutFromHerePlan()
156 lldb::FrameComparison operation, Status &status) { in CheckShouldStopHereAndQueueStepOut() argument
[all …]
/freebsd/tests/sys/cddl/zfs/bin/
H A Dfile_write.c60 char *operation = NULL; in main() local
89 operation = optarg; in main()
115 if (!operation) { in main()
150 if ((strncmp(operation, "create", strlen(operation) + 1)) == 0 || in main()
151 (strncmp(operation, "overwrite", strlen(operation) + 1)) == 0) { in main()
153 } else if ((strncmp(operation, "append", strlen(operation) + 1)) == 0) { in main()
157 operation); in main()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/cmd/file/
H A Dfile_write.c75 char *operation = NULL; in main() local
105 operation = optarg; in main()
131 if (!operation) { in main()
174 if ((strncmp(operation, "create", strlen(operation) + 1)) == 0 || in main()
175 (strncmp(operation, "overwrite", strlen(operation) + 1)) == 0) { in main()
177 } else if ((strncmp(operation, "append", strlen(operation) + 1)) == 0) { in main()
181 operation); in main()
/freebsd/sys/security/mac/
H A Dmac_internal.h371 #define MAC_POLICY_BOOLEAN(operation, composition, args...) do { \ argument
375 if (mpc->mpc_ops->mpo_ ## operation != NULL) \
377 mpc->mpc_ops->mpo_ ## operation (args); \
382 if (mpc->mpc_ops->mpo_ ## operation != NULL) \
384 mpc->mpc_ops->mpo_ ## operation \
391 #define MAC_POLICY_BOOLEAN_NOSLEEP(operation, composition, args...) do {\ argument
395 if (mpc->mpc_ops->mpo_ ## operation != NULL) \
397 mpc->mpc_ops->mpo_ ## operation (args); \
404 if (mpc->mpc_ops->mpo_ ## operation != NULL) \
406 mpc->mpc_ops->mpo_ ## operation \
[all …]
/freebsd/crypto/openssl/crypto/evp/
H A Dpmeth_gn.c25 static int gen_init(EVP_PKEY_CTX *ctx, int operation) in gen_init() argument
33 ctx->operation = operation; in gen_init()
38 switch (operation) { in gen_init()
62 || (operation == EVP_PKEY_OP_PARAMGEN in gen_init()
64 || (operation == EVP_PKEY_OP_KEYGEN in gen_init()
69 switch (operation) { in gen_init()
84 ctx->operation = EVP_PKEY_OP_UNDEFINED; in gen_init()
141 if ((ctx->operation & EVP_PKEY_OP_TYPE_GEN) == 0) in EVP_PKEY_generate()
223 switch (ctx->operation) { in EVP_PKEY_generate()
261 if (ctx->operation != EVP_PKEY_OP_PARAMGEN) { in EVP_PKEY_paramgen()
[all …]
/freebsd/crypto/openssl/crypto/rsa/
H A Drsa_asn1.c28 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, in rsa_cb() argument
31 if (operation == ASN1_OP_NEW_PRE) { in rsa_cb()
36 } else if (operation == ASN1_OP_FREE_PRE) { in rsa_cb()
40 } else if (operation == ASN1_OP_D2I_POST) { in rsa_cb()
77 static int rsa_pss_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
80 if (operation == ASN1_OP_FREE_PRE) {
98 static int rsa_oaep_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
101 if (operation == ASN1_OP_FREE_PRE) {
/freebsd/sys/xen/
H A Dblkif.h42 uint8_t operation; /* BLKIF_OP_??? */ member
51 uint8_t operation; /* copied from request */ member
60 uint8_t operation; /* BLKIF_OP_??? */ member
69 uint8_t operation; /* copied from request */ member
116 dst->operation = src->operation; in blkif_get_x86_32_req()
131 dst->operation = src->operation; in blkif_get_x86_64_req()
/freebsd/crypto/openssl/doc/man7/
H A Dprovider.pod5 provider - OpenSSL operation implementation providers
23 An I<operation> is something one wants to do, such as encryption and
27 An I<algorithm> is a named method to perform an operation.
29 but may also revolve around other types of operation, such as managing
69 This pointer will be passed to various operation functions offered by
77 operation implementations for diverse algorithms.
88 I<operation_id> is an operation identity (see L</Operations> below).
105 With each operation comes a set of defined function types that a
116 The number for this operation is B<OSSL_OP_DIGEST>.
124 The number for this operation is B<OSSL_OP_CIPHER>.
[all …]
/freebsd/crypto/heimdal/lib/roken/
H A Dflock.c44 rk_flock(int fd, int operation) in rk_flock() argument
54 if (operation & LOCK_NB) in rk_flock()
59 switch (operation & OP_MASK) { in rk_flock()
103 if (operation & LOCK_NB) in rk_flock()
106 switch (operation & OP_MASK) { in rk_flock()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanShouldStopHere.h97 bool InvokeShouldStopHereCallback(lldb::FrameComparison operation,
101 CheckShouldStopHereAndQueueStepOut(lldb::FrameComparison operation,
111 lldb::FrameComparison operation,
116 lldb::FrameComparison operation, Status &status,
120 QueueStepOutFromHerePlan(Flags &flags, lldb::FrameComparison operation,
/freebsd/crypto/openssl/test/
H A Dfilterprov.c29 int operation; member
87 if (globs->dispatch[i].operation == operation_id) { in filter_query()
164 int filter_provider_set_filter(int operation, const char *filterstr) in filter_provider_set_filter() argument
173 operation, in filter_provider_set_filter()
218 globs->dispatch[globs->num_dispatch].operation = operation; in filter_provider_set_filter()
224 OSSL_PROVIDER_unquery_operation(globs->deflt, operation, provalgs); in filter_provider_set_filter()
/freebsd/sys/contrib/zstd/programs/
H A Dzstdcli.c814 zstd_operation_mode operation = zom_compress; in main() local
860 if (exeNameMatch(programName, ZSTD_UNZSTD)) operation=zom_decompress; in main()
861 …if (exeNameMatch(programName, ZSTD_CAT)) { operation=zom_decompress; FIO_overwriteMode(prefs); for… in main()
862 …if (exeNameMatch(programName, ZSTD_ZCAT)) { operation=zom_decompress; FIO_overwriteMode(prefs); fo… in main()
864 …if (exeNameMatch(programName, ZSTD_GUNZIP)) { operation=zom_decompress; FIO_setRemoveSrcFile(prefs… in main()
865 …if (exeNameMatch(programName, ZSTD_GZCAT)) { operation=zom_decompress; FIO_overwriteMode(prefs); f… in main()
867 …if (exeNameMatch(programName, ZSTD_UNLZMA)) { operation=zom_decompress; FIO_setCompressionType(pre… in main()
869 …if (exeNameMatch(programName, ZSTD_UNXZ)) { operation=zom_decompress; FIO_setCompressionType(prefs… in main()
871 …if (exeNameMatch(programName, ZSTD_UNLZ4)) { operation=zom_decompress; FIO_setCompressionType(pref… in main()
899 if (!strcmp(argument, "--list")) { operation=zom_list; continue; } in main()
[all …]
/freebsd/usr.bin/elfctl/
H A Delfctl.c227 char operation; in convert_to_feature_val() local
230 operation = *feature_str; in convert_to_feature_val()
233 if (operation != '+' && operation != '-' && operation != '=') in convert_to_feature_val()
234 errx(1, "'%c' not an operator - use '+', '-', '='", operation); in convert_to_feature_val()
283 if (operation == '+') { in convert_to_feature_val()
285 } else if (operation == '=') { in convert_to_feature_val()
287 } else if (operation == '-') { in convert_to_feature_val()
/freebsd/contrib/openbsm/compat/
H A Dflopen.h40 int fd, operation, serrno, trunc; in flopen() local
57 operation = LOCK_EX; in flopen()
59 operation |= LOCK_NB; in flopen()
68 if (flock(fd, operation) == -1) { in flopen()
/freebsd/sys/contrib/xen/io/
H A Dblkif.h648 uint8_t operation; /* BLKIF_OP_??? */ member
662 uint8_t operation; /* BLKIF_OP_DISCARD */ member
673 uint8_t operation; /* BLKIF_OP_INDIRECT */ member
688 uint8_t operation; /* copied from request */ member
/freebsd/crypto/openssl/doc/man3/
H A DSSL_get_error.pod5 SSL_get_error - obtain result code for TLS/SSL I/O operation
23 used in the same thread that performed the TLS/SSL I/O operation, and no
25 thread's error queue must be empty before the TLS/SSL I/O operation is
47 The TLS/SSL I/O operation completed. This result code is returned
63 The operation did not complete and can be retried later.
65 B<SSL_ERROR_WANT_READ> is returned when the last operation was a read
66 operation from a nonblocking B<BIO>.
68 operation.
77 B<SSL_ERROR_WANT_WRITE> is returned when the last operation was a write
91 from SSL_write() or SSL_write_ex() then you should not do any other operation
[all …]
H A DSSL_want.pod7 SSL_want_client_hello_cb - obtain state information TLS/SSL I/O operation
36 only. The information must therefore only be used for normal operation under
56 B<BIO> layer in order to complete the actual SSL_*() operation.
62 complete the actual SSL_*() operation.
67 The operation did not complete because an application callback set by
73 The operation did not complete because a certificate verification callback
79 An asynchronous operation partially completed and was then paused. See
91 The operation did not complete because an application callback set by
/freebsd/crypto/openssl/providers/common/
H A Dsecuritycheck.c29 int ossl_rsa_check_key(OSSL_LIB_CTX *ctx, const RSA *rsa, int operation) in ossl_rsa_check_key() argument
33 switch (operation) { in ossl_rsa_check_key()
50 "operation: %d", operation); in ossl_rsa_check_key()
56 "invalid operation: %d", operation); in ossl_rsa_check_key()
66 "operation: %d", operation); in ossl_rsa_check_key()
/freebsd/lib/libutil/
H A Dflopen.c51 int fd, operation, serrno, trunc; in vflopenat() local
64 operation = LOCK_EX; in vflopenat()
66 operation |= LOCK_NB; in vflopenat()
75 if (flock(fd, operation) == -1) { in vflopenat()
/freebsd/tools/test/stress2/misc/
H A Dumountf2.sh139 * A log entry is an operation and a bunch of arguments.
143 int operation;
255 do_log4(int operation, int arg0, int arg1, int arg2)
260 le->operation = operation;
271 log4(int operation, int arg0, int arg1, int arg2)
273 do_log4(operation, arg0, arg1, arg2);
299 if (lp->operation == OP_CLOSEOPEN ||
300 lp->operation == OP_INVALIDATE) {
301 switch (lp->operation) {
316 switch (lp->operation) {
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DP9InstrResources.td33 // Two cycle ALU vector operation that uses an entire superslice.
86 // Restricted Dispatch ALU operation for 3 cycles. The operation runs on a
104 // Standard Dispatch ALU operation for 3 cycles. Only one slice used.
121 // Standard Dispatch ALU operation for 2 cycles. Only one slice used.
176 // Restricted Dispatch ALU operation for 2 cycles. The operation runs on a
205 // Three cycle ALU vector operation that uses an entire superslice.
290 // 7 cycle DP vector operation that uses an entire superslice.
401 // 5 cycle Restricted DP operation. One DP unit, one EXEC pipeline and all three
409 // 7 cycle Restricted DP operation. One DP unit, one EXEC pipeline and all three
452 // 7 cycle Restricted DP operation and one 3 cycle ALU operation.
[all …]
/freebsd/sys/dev/qat/qat_api/common/compression/
H A Ddc_chain.c54 CpaDcChainOperations operation, in cpaDcChainGetSessionSize() argument
66 CpaDcChainOperations operation, in cpaDcChainInitSession() argument
94 CpaDcChainOperations operation, in cpaDcChainPerformOp() argument
/freebsd/crypto/openssl/crypto/cms/
H A Dcms_asn1.c46 static int cms_si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
49 if (operation == ASN1_OP_FREE_POST) {
121 static int cms_rek_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
125 if (operation == ASN1_OP_FREE_POST) {
147 static int cms_kari_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
151 if (operation == ASN1_OP_NEW_POST) {
157 } else if (operation == ASN1_OP_FREE_POST) {
198 static int cms_ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
201 if (operation == ASN1_OP_FREE_PRE) {
293 static int cms_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, in cms_cb() argument
[all …]

12345678910>>...32