Searched refs:operation (Results 1 - 25 of 162) sorted by relevance

1234567

/freebsd-11-stable/lib/libcasper/services/cap_sysctl/
H A Dcap_sysctl.c53 uint8_t operation; local
56 operation = 0;
58 operation |= CAP_SYSCTL_READ;
60 operation |= CAP_SYSCTL_WRITE;
65 nvlist_add_number(nvl, "operation", (uint64_t)operation);
117 /* We accept only one 'name' and one 'operation' in nvl. */
125 } else if (strcmp(name, "operation") == 0) {
126 uint64_t operation; local
134 operation
163 uint64_t operation; local
203 uint64_t operation; local
229 uint64_t operation; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanShouldStopHere.cpp39 FrameComparison operation, Status &status) {
43 m_owner, m_flags, operation, status, m_baton);
58 ThreadPlan *current_plan, Flags &flags, FrameComparison operation,
67 if ((operation == eFrameCompareOlder && flags.Test(eStepOutAvoidNoDebug)) ||
68 (operation == eFrameCompareYounger && flags.Test(eStepInAvoidNoDebug)) ||
69 (operation == eFrameCompareSameParent &&
94 ThreadPlan *current_plan, Flags &flags, FrameComparison operation,
144 lldb_private::Flags &flags, lldb::FrameComparison operation,
149 m_owner, flags, operation, status, m_baton);
155 lldb::FrameComparison operation, Statu
38 InvokeShouldStopHereCallback( FrameComparison operation, Status &status) argument
57 DefaultShouldStopHereCallback( ThreadPlan *current_plan, Flags &flags, FrameComparison operation, Status &status, void *baton) argument
93 DefaultStepFromHereCallback( ThreadPlan *current_plan, Flags &flags, FrameComparison operation, Status &status, void *baton) argument
143 QueueStepOutFromHerePlan( lldb_private::Flags &flags, lldb::FrameComparison operation, Status &status) argument
154 CheckShouldStopHereAndQueueStepOut( lldb::FrameComparison operation, Status &status) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dnsseq.c66 static int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
69 if (operation == ASN1_OP_NEW_POST) {
H A Dx_req.c83 static int rinf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
88 if (operation == ASN1_OP_NEW_POST) {
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Dpmeth_fn.c93 ctx->operation = EVP_PKEY_OP_SIGN;
98 ctx->operation = EVP_PKEY_OP_UNDEFINED;
111 if (ctx->operation != EVP_PKEY_OP_SIGN) {
127 ctx->operation = EVP_PKEY_OP_VERIFY;
132 ctx->operation = EVP_PKEY_OP_UNDEFINED;
145 if (ctx->operation != EVP_PKEY_OP_VERIFY) {
160 ctx->operation = EVP_PKEY_OP_VERIFYRECOVER;
165 ctx->operation = EVP_PKEY_OP_UNDEFINED;
178 if (ctx->operation != EVP_PKEY_OP_VERIFYRECOVER) {
194 ctx->operation
[all...]
H A Dpmeth_gn.c76 ctx->operation = EVP_PKEY_OP_PARAMGEN;
81 ctx->operation = EVP_PKEY_OP_UNDEFINED;
94 if (ctx->operation != EVP_PKEY_OP_PARAMGEN) {
126 ctx->operation = EVP_PKEY_OP_KEYGEN;
131 ctx->operation = EVP_PKEY_OP_UNDEFINED;
144 if (ctx->operation != EVP_PKEY_OP_KEYGEN) {
/freebsd-11-stable/contrib/openbsm/compat/
H A Dflopen.h40 int fd, operation, serrno, trunc; local
57 operation = LOCK_EX;
59 operation |= LOCK_NB;
68 if (flock(fd, operation) == -1) {
/freebsd-11-stable/lib/libutil/
H A Dflopen.c43 int fd, operation, serrno, trunc; local
60 operation = LOCK_EX;
62 operation |= LOCK_NB;
71 if (flock(fd, operation) == -1) {
/freebsd-11-stable/sys/xen/interface/io/
H A Dblkif.h476 * operation code ("barrier request") must be completed prior to the
502 * This operation is analogous to performing a trim (ATA) or unamp (SCSI),
572 uint8_t operation; /* BLKIF_OP_??? */ member in struct:blkif_request
582 * Cast to this structure when blkif_request.operation == BLKIF_OP_DISCARD
586 uint8_t operation; /* BLKIF_OP_DISCARD */ member in struct:blkif_request_discard
597 uint8_t operation; /* BLKIF_OP_INDIRECT */ member in struct:blkif_request_indirect
612 uint8_t operation; /* copied from request */ member in struct:blkif_response
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dflock.c44 rk_flock(int fd, int operation) argument
54 if (operation & LOCK_NB)
59 switch (operation & OP_MASK) {
103 if (operation & LOCK_NB)
106 switch (operation & OP_MASK) {
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanShouldStopHere.h21 // comparison between where the step operation started and where you arrived.
97 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-11-stable/sys/xen/
H A Dblkif.h44 uint8_t operation; /* BLKIF_OP_??? */ member in struct:blkif_x86_32_request
53 uint8_t operation; /* copied from request */ member in struct:blkif_x86_32_response
62 uint8_t operation; /* BLKIF_OP_??? */ member in struct:blkif_x86_64_request
71 uint8_t operation; /* copied from request */ member in struct:blkif_x86_64_response
118 dst->operation = src->operation;
133 dst->operation = src->operation;
/freebsd-11-stable/contrib/subversion/subversion/svn/
H A Dcl-conflicts.h75 svn_wc_operation_t operation,
H A Dcl-conflicts.c65 svn_wc_operation_t operation)
80 if (operation == svn_wc_operation_merge)
106 if (operation == svn_wc_operation_merge)
133 if (operation == svn_wc_operation_merge)
205 /* Return a localised string representation of the operation part of a
208 operation_str(svn_wc_operation_t operation) argument
210 switch (operation)
286 const char *action, *reason, *operation; local
321 operation = operation_str(conflict_operation);
322 SVN_ERR_ASSERT(operation);
64 local_reason_str(svn_node_kind_t kind, svn_wc_conflict_reason_t reason, svn_wc_operation_t operation) argument
347 svn_cl__get_human_readable_action_description( const char **desc, svn_wc_conflict_action_t action, svn_wc_operation_t operation, svn_node_kind_t kind, apr_pool_t *pool) argument
[all...]
/freebsd-11-stable/crypto/openssl/apps/
H A Dsmime.c91 int operation = 0; local
136 operation = SMIME_ENCRYPT;
138 operation = SMIME_DECRYPT;
140 operation = SMIME_SIGN;
142 operation = SMIME_RESIGN;
144 operation = SMIME_VERIFY;
146 operation = SMIME_PK7OUT;
331 if (!(operation & SMIME_SIGNERS) && (skkeys || sksigners)) {
336 if (operation & SMIME_SIGNERS) {
359 } else if (operation
[all...]
H A Dcms.c116 int operation = 0; local
172 operation = SMIME_ENCRYPT;
174 operation = SMIME_DECRYPT;
176 operation = SMIME_SIGN;
178 operation = SMIME_SIGN_RECEIPT;
180 operation = SMIME_RESIGN;
182 operation = SMIME_VERIFY;
186 operation = SMIME_VERIFY_RECEIPT;
192 operation = SMIME_CMSOUT;
194 operation
[all...]
/freebsd-11-stable/sys/security/mac/
H A Dmac_internal.h348 * the module list, invoking each instance of the operation, and combining
353 #define MAC_POLICY_BOOLEAN(operation, composition, args...) do { \
357 if (mpc->mpc_ops->mpo_ ## operation != NULL) \
359 mpc->mpc_ops->mpo_ ## operation (args); \
364 if (mpc->mpc_ops->mpo_ ## operation != NULL) \
366 mpc->mpc_ops->mpo_ ## operation \
373 #define MAC_POLICY_BOOLEAN_NOSLEEP(operation, composition, args...) do {\
377 if (mpc->mpc_ops->mpo_ ## operation != NULL) \
379 mpc->mpc_ops->mpo_ ## operation (args); \
386 if (mpc->mpc_ops->mpo_ ## operation !
[all...]
/freebsd-11-stable/crypto/openssl/crypto/rsa/
H A Drsa_asn1.c68 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
71 if (operation == ASN1_OP_NEW_PRE) {
76 } else if (operation == ASN1_OP_FREE_PRE) {
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Dbdb-err.c95 svn_fs_bdb__wrap_db(svn_fs_t *fs, const char *operation, int db_err)
110 fs->path ? fs->path : "(none)", _(operation));
90 svn_fs_bdb__wrap_db(svn_fs_t *fs, const char *operation, int db_err) argument
H A Dbdb-err.h71 /* Check the return status from the Berkeley DB operation. If the
72 operation succeeded, return zero. Otherwise, construct an
78 const char *operation,
/freebsd-11-stable/crypto/openssl/crypto/dsa/
H A Ddsa_asn1.c68 static int sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
71 if (operation == ASN1_OP_NEW_PRE) {
94 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
97 if (operation == ASN1_OP_NEW_PRE) {
102 } else if (operation == ASN1_OP_FREE_PRE) {
/freebsd-11-stable/usr.sbin/cron/lib/
H A Dcompat.c140 * flock (fd, operation)
171 flock(fd, operation)
173 int operation;
177 switch (operation) {
195 default: /* can't decipher operation */
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DWindowsMMap.c132 // If the error is ERROR_IO_PENDING, we need to wait until the operation
146 int flock(int fd, int operation) { argument
151 BOOL blocking = (operation & LOCK_NB) == 0;
152 int op = operation & ~LOCK_NB;
H A DWindowsMMap.h62 int flock(int fd, int operation);
/freebsd-11-stable/sys/dev/hyperv/utilities/
H A Dhv_kvp.h167 uint8_t operation; member in struct:hv_kvp_hdr
222 uint8_t operation; member in struct:hv_kvp_ip_msg

Completed in 181 milliseconds

1234567