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

12345

/freebsd-9.3-release/crypto/openssl/crypto/dh/
H A Ddh_asn1.c68 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
70 if (operation == ASN1_OP_NEW_PRE) {
75 } else if (operation == ASN1_OP_FREE_PRE) {
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dflock.c47 flock(int fd, int operation) argument
57 if (operation & LOCK_NB)
62 switch (operation & OP_MASK) {
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dnsseq.c66 static int nsseq_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
68 if (operation == ASN1_OP_NEW_POST) {
H A Dp8_pkey.c65 /* Minor tweak to operation: zero private key data */
66 static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
69 if (operation == ASN1_OP_FREE_PRE) {
H A Dx_req.c83 static int rinf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
87 if (operation == ASN1_OP_NEW_POST) {
H A Dx_crl.c78 static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it)
84 switch (operation) {
/freebsd-9.3-release/contrib/openbsm/compat/
H A Dflopen.h41 int fd, operation, serrno, trunc; local
58 operation = LOCK_EX;
60 operation |= LOCK_NB;
69 if (flock(fd, operation) == -1) {
/freebsd-9.3-release/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-9.3-release/crypto/openssl/crypto/
H A Do_time.c182 long operation; local
190 operation = LIB$K_DELTA_SECONDS;
191 status = lib$cvt_to_internal_time(&operation, &t, deltatime);
210 operation = LIB$K_DAY_OF_WEEK;
211 status = lib$cvt_from_internal_time(&operation,
215 operation = LIB$K_DAY_OF_YEAR;
216 status = lib$cvt_from_internal_time(&operation,
/freebsd-9.3-release/crypto/openssl/apps/
H A Dcms.c104 int operation = 0; local
158 operation = SMIME_ENCRYPT;
160 operation = SMIME_DECRYPT;
162 operation = SMIME_SIGN;
164 operation = SMIME_SIGN_RECEIPT;
166 operation = SMIME_RESIGN;
168 operation = SMIME_VERIFY;
170 operation = SMIME_VERIFY_RECEIPT;
176 operation = SMIME_CMSOUT;
178 operation
[all...]
H A Dsmime.c88 int operation = 0; local
132 operation = SMIME_ENCRYPT;
134 operation = SMIME_DECRYPT;
136 operation = SMIME_SIGN;
138 operation = SMIME_VERIFY;
140 operation = SMIME_PK7OUT;
319 if (operation == SMIME_SIGN) {
325 } else if (operation == SMIME_DECRYPT) {
331 } else if (operation == SMIME_ENCRYPT) {
337 } else if (!operation)
[all...]
/freebsd-9.3-release/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-9.3-release/sys/xen/interface/io/
H A Dblkif.h414 * operation code ("barrier request") must be completed prior to the
440 * This operation is analogous to performing a trim (ATA) or unamp (SCSI),
506 uint8_t operation; /* BLKIF_OP_??? */ member in struct:blkif_request
527 * Cast to this structure when blkif_request.operation == BLKIF_OP_DISCARD
531 uint8_t operation; /* BLKIF_OP_DISCARD */ member in struct:blkif_request_discard
543 uint8_t operation; /* copied from request */ member in struct:blkif_response
/freebsd-9.3-release/crypto/openssl/crypto/rsa/
H A Drsa_asn1.c79 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
81 if (operation == ASN1_OP_NEW_PRE) {
86 } else if (operation == ASN1_OP_FREE_PRE) {
/freebsd-9.3-release/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-9.3-release/lib/libncp/
H A Dsap.c59 static int sap_size(int entries, u_short operation);
81 sap_size(int entries, u_short operation) argument
85 switch (operation) {
115 rq->buffer->operation = htons(IPX_SAP_GENERAL_QUERY);
130 sap_size(rq->entries, ntohs(rq->buffer->operation)),
142 rq->buffer->operation = htons(IPX_SAP_GENERAL_QUERY);
153 rq->buffer->operation = htons(IPX_SAP_NEAREST_QUERY);
166 if (rq->buffer->operation != htons(IPX_SAP_GENERAL_RESPONSE)){
168 rq->buffer->operation = htons(IPX_SAP_GENERAL_RESPONSE);
185 rq->buffer->operation
[all...]
H A Dipxsap.h61 u_short operation; member in struct:sap_packet
/freebsd-9.3-release/crypto/openssl/crypto/dsa/
H A Ddsa_asn1.c72 static int sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) argument
74 if (operation == ASN1_OP_NEW_PRE) {
96 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it)
98 if (operation == ASN1_OP_NEW_PRE) {
103 } else if (operation == ASN1_OP_FREE_PRE) {
/freebsd-9.3-release/usr.sbin/cron/lib/
H A Dcompat.c152 * flock (fd, operation)
183 flock(fd, operation)
185 int operation;
189 switch (operation) {
207 default: /* can't decipher operation */
/freebsd-9.3-release/contrib/cvs/src/
H A Dlogin.c219 * password_entry_operation_t operation,
224 * Search the password file and depending on the value of operation:
264 * operation operation to perform
282 password_entry_operation (operation, root, newpassword)
283 password_entry_operation_t operation;
357 if (operation == password_entry_lookup)
361 if (operation == password_entry_delete && password == NULL)
375 if (!noexec && password != NULL && (operation == password_entry_delete
376 || (operation
[all...]
/freebsd-9.3-release/sys/dev/drm2/radeon/
H A Dradeon_gem.c455 args->operation = RADEON_VA_RESULT_ERROR;
465 args->operation = RADEON_VA_RESULT_ERROR;
474 args->operation = RADEON_VA_RESULT_ERROR;
486 args->operation = RADEON_VA_RESULT_ERROR;
491 args->operation = RADEON_VA_RESULT_ERROR;
495 switch (args->operation) {
500 dev_err(dev->device, "unsupported operation %d\n",
501 args->operation);
502 args->operation = RADEON_VA_RESULT_ERROR;
508 args->operation
[all...]
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dspa_history.c436 log_internal(nvlist_t *nvl, const char *operation, spa_t *spa, argument
461 fnvlist_add_string(nvl, ZPOOL_HIST_INT_NAME, operation);
474 spa_history_log_internal(spa_t *spa, const char *operation, argument
490 log_internal(fnvlist_alloc(), operation, spa, htx, fmt, adx); local
499 spa_history_log_internal_ds(dsl_dataset_t *ds, const char *operation, argument
513 log_internal(nvl, operation, dsl_dataset_get_spa(ds), tx, fmt, adx);
518 spa_history_log_internal_dd(dsl_dir_t *dd, const char *operation, argument
533 log_internal(nvl, operation, dd->dd_pool->dp_spa, tx, fmt, adx);
538 spa_history_log_version(spa_t *spa, const char *operation) argument
540 spa_history_log_internal(spa, operation, NUL
[all...]
/freebsd-9.3-release/contrib/binutils/binutils/
H A Dar.c348 } operation = none;
489 if (operation != none)
490 fatal (_("two different operation options specified"));
494 operation = delete;
498 operation = move;
502 operation = print_files;
505 operation = quick_append;
509 operation = replace;
513 operation = print_table;
516 operation
345 } operation = none; local
[all...]
/freebsd-9.3-release/sys/boot/arm/at91/libat91/
H A Demac.h63 unsigned short operation; member in struct:__anon5588
/freebsd-9.3-release/contrib/ntp/sntp/libevent/build-aux/
H A Dar-lib79 # func_at_file at_file operation archive
87 operation=$2
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?

Completed in 289 milliseconds

12345