Home
last modified time | relevance | path

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

12345678910>>...79

/netbsd-src/usr.bin/pwhash/
H A Dpwhash.c100 print_passwd(char *string, int operation, const char *extra) in print_passwd() argument
107 switch(operation) { in print_passwd()
169 int operation = -1; local
176 operation = DO_MAKEKEY;
185 if (operation != -1 || prompt)
187 operation = DO_MAKEKEY;
191 if (operation != -1)
193 operation = DO_MD5;
198 if (operation == DO_MAKEKEY)
204 if (operation != -1)
[all …]
/netbsd-src/tests/lib/libc/sys/
H A Dt_ptrace_bytetransfer_wait.h57 bytes_transfer(int operation, size_t size, enum bytes_transfer_type type) in bytes_transfer() argument
114 io.piod_op = operation; in bytes_transfer()
149 io.piod_op = operation; in bytes_transfer()
166 switch (operation) { in bytes_transfer()
176 switch (operation) { in bytes_transfer()
209 switch (operation) { in bytes_transfer()
219 switch (operation) { in bytes_transfer()
289 switch (operation) { in bytes_transfer()
299 switch (operation) { in bytes_transfer()
332 switch (operation) { in bytes_transfer()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/evp/
H A Dpmeth_fn.c43 ctx->operation = EVP_PKEY_OP_SIGN; in EVP_PKEY_sign_init()
48 ctx->operation = EVP_PKEY_OP_UNDEFINED; in EVP_PKEY_sign_init()
61 if (ctx->operation != EVP_PKEY_OP_SIGN) { in EVP_PKEY_sign()
77 ctx->operation = EVP_PKEY_OP_VERIFY; in EVP_PKEY_verify_init()
82 ctx->operation = EVP_PKEY_OP_UNDEFINED; in EVP_PKEY_verify_init()
95 if (ctx->operation != EVP_PKEY_OP_VERIFY) { in EVP_PKEY_verify()
110 ctx->operation = EVP_PKEY_OP_VERIFYRECOVER; in EVP_PKEY_verify_recover_init()
115 ctx->operation = EVP_PKEY_OP_UNDEFINED; in EVP_PKEY_verify_recover_init()
128 if (ctx->operation != EVP_PKEY_OP_VERIFYRECOVER) { in EVP_PKEY_verify_recover()
144 ctx->operation = EVP_PKEY_OP_ENCRYPT; in EVP_PKEY_encrypt_init()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/arm/
H A Dunspecs.md27 UNSPEC_PUSH_MULT ; `push multiple' operation:
64 UNSPEC_RBIT ; rbit operation.
98 UNSPEC_SXTAB16 ; Represent the SXTAB16 operation.
99 UNSPEC_UXTAB16 ; Represent the UXTAB16 operation.
100 UNSPEC_SXTB16 ; Represent the SXTB16 operation.
101 UNSPEC_UXTB16 ; Represent the UXTB16 operation.
102 UNSPEC_QADD8 ; Represent the QADD8 operation.
103 UNSPEC_QSUB8 ; Represent the QSUB8 operation.
104 UNSPEC_SHADD8 ; Represent the SHADD8 operation.
105 UNSPEC_SHSUB8 ; Represent the SHSUB8 operation.
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/apps/
H A Dcms.c212 int operation = 0, ret = 1, rr_print = 0, rr_allorfirst = -1; in cms_main() local
248 operation = SMIME_ENCRYPT; in cms_main()
251 operation = SMIME_DECRYPT; in cms_main()
254 operation = SMIME_SIGN; in cms_main()
257 operation = SMIME_SIGN_RECEIPT; in cms_main()
260 operation = SMIME_RESIGN; in cms_main()
263 operation = SMIME_VERIFY; in cms_main()
269 operation = SMIME_VERIFY_RECEIPT; in cms_main()
273 operation = SMIME_CMSOUT; in cms_main()
276 operation = SMIME_DATAOUT; in cms_main()
[all …]
H A Dsmime.c130 int flags = PKCS7_DETACHED, operation = 0, ret = 0, indef = 0; in smime_main() local
167 operation = SMIME_ENCRYPT; in smime_main()
170 operation = SMIME_DECRYPT; in smime_main()
173 operation = SMIME_SIGN; in smime_main()
176 operation = SMIME_RESIGN; in smime_main()
179 operation = SMIME_VERIFY; in smime_main()
182 operation = SMIME_PK7OUT; in smime_main()
324 if (!(operation & SMIME_SIGNERS) && (skkeys != NULL || sksigners != NULL)) { in smime_main()
329 if (operation & SMIME_SIGNERS) { in smime_main()
352 } else if (operation == SMIME_DECRYPT) { in smime_main()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/arm/
H A Dunspecs.md27 UNSPEC_PUSH_MULT ; `push multiple' operation:
64 UNSPEC_RBIT ; rbit operation.
98 UNSPEC_SXTAB16 ; Represent the SXTAB16 operation.
99 UNSPEC_UXTAB16 ; Represent the UXTAB16 operation.
100 UNSPEC_SXTB16 ; Represent the SXTB16 operation.
101 UNSPEC_UXTB16 ; Represent the UXTB16 operation.
102 UNSPEC_QADD8 ; Represent the QADD8 operation.
103 UNSPEC_QSUB8 ; Represent the QSUB8 operation.
104 UNSPEC_SHADD8 ; Represent the SHADD8 operation.
105 UNSPEC_SHSUB8 ; Represent the SHSUB8 operation.
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dmyflock.c89 int myflock(int fd, int lock_style, int operation) in myflock() argument
96 if ((operation & (MYFLOCK_OP_BITS)) != operation) in myflock()
97 msg_panic("myflock: improper operation type: 0x%x", operation); in myflock()
112 while ((status = flock(fd, lock_ops[operation])) < 0 in myflock()
133 lock.l_type = lock_ops[operation & ~MYFLOCK_OP_NOWAIT]; in myflock()
134 request = (operation & MYFLOCK_OP_NOWAIT) ? F_SETLK : F_SETLKW; in myflock()
149 if (status < 0 && (operation & MYFLOCK_OP_NOWAIT) != 0) in myflock()
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc3909.txt30 (LDAP) extended operation to cancel (or abandon) an outstanding
31 operation. Unlike the LDAP Abandon operation, but like the X.511
32 Directory Access Protocol (DAP) Abandon operation, this operation has
38 an Abandon operation [RFC2251] which clients may use to cancel other
39 operations. The Abandon operation does not have a response and
40 requires no response from the abandoned operation. These semantics
42 Abandon operation.
45 operation which has a response and also requires the abandoned
46 operation to return a response indicating it was canceled. The LDAP
47 Cancel operation is modeled after the DAP Abandon operation.
[all …]
H A Drfc4532.txt32 mechanism is specified as an LDAP extended operation called the LDAP
33 "Who am I?" operation.
38 (LDAP) [RFC4510] operation that clients can use to obtain the primary
40 associated with the user or application entity. The operation is
41 called the "Who am I?" operation.
47 Bind operation that includes them. While it is possible to establish
49 operation, it is often desirable to use security layers established
50 by the Bind operation. An extended operation sent after a Bind
51 operation is protected by the security layers established by the Bind
52 operation.
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/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 …]
/netbsd-src/external/gpl2/lvm2/dist/lib/locking/
H A Dfile_locking.c136 static int _do_flock(const char *file, int *fd, int operation, uint32_t nonblock) in _do_flock() argument
143 file, operation == LOCK_EX ? 'W' : 'R', nonblock ? ' ' : 'B'); in _do_flock()
154 operation |= LOCK_NB; in _do_flock()
158 r = flock(*fd, operation); in _do_flock()
180 static int _do_write_priority_flock(const char *file, int *fd, int operation, uint32_t nonblock) in _do_write_priority_flock() argument
189 if (operation == LOCK_EX) { in _do_write_priority_flock()
190 r = _do_flock(file, fd, operation, nonblock); in _do_write_priority_flock()
194 r = _do_flock(file, fd, operation, nonblock); in _do_write_priority_flock()
203 int operation; in _lock_file() local
212 operation = LOCK_SH; in _lock_file()
[all …]
/netbsd-src/usr.bin/vndcompress/
H A Dmain.c44 static int (*operation)(int, char **, const struct options *) = &vndcompress; variable
56 operation = &vndcompress; in main()
58 operation = &vnduncompress; in main()
83 operation = &vndcompress; in main()
92 operation = &vnduncompress; in main()
150 if (operation == &vnduncompress) { in main()
154 assert(operation == &vndcompress); in main()
164 return (*operation)(argc, argv, O); in main()
/netbsd-src/crypto/external/bsd/openssl/dist/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) {
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/rsa/
H A Drsa_asn1.c22 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, in rsa_cb() argument
25 if (operation == ASN1_OP_NEW_PRE) { in rsa_cb()
30 } else if (operation == ASN1_OP_FREE_PRE) { in rsa_cb()
34 } else if (operation == ASN1_OP_D2I_POST) { in rsa_cb()
71 static int rsa_pss_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
74 if (operation == ASN1_OP_FREE_PRE) {
91 static int rsa_oaep_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
94 if (operation == ASN1_OP_FREE_PRE) {
/netbsd-src/external/bsd/openldap/dist/doc/guide/admin/
H A Dappendix-ldap-result-codes.sdf34 needs to take additional action to complete the operation.
42 Indicates the successful completion of an operation.
44 Note: this code is not used with the Compare operation. See {{SECT:compareFalse (5)}}
49 Indicates that the operation is not properly sequenced with
60 For Bind operation only, this code is also used to indicate
66 configuration) the Extended operation associated with the
77 exceeded before the operation could be completed.
82 exceeded before the operation could be completed.
86 Indicates that the Compare operation has successfully
92 Indicates that the Compare operation has successfully
[all …]
/netbsd-src/external/bsd/openldap/dist/doc/drafts/
H A Ddraft-sermersheim-ldap-distproc-xx.txt58 particular, it describes the way in which an LDAP user operation in a
148 Two modes of operation distribution are defined to meet these
156 chaining or referral mechanism is used to distribute an operation.
159 The processing of an operation is talked about in two major phases,
160 namely "name resolution", and "operation evaluation". Name
163 performing the operation after the name resolution phase is complete.
166 While distributing an operation, a request operation may be
170 The distributed directory operation procedures described in this
256 distributed operation mechanisms described in Section 4
262 As an operation is being processed by a DSA, it is useful to group
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/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 …]
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/intl/
H A Dplural-exp.c38 .operation = var,
43 .operation = num,
52 .operation = not_equal,
80 plvar.operation = var; in init_germanic_plural()
83 plone.operation = num; in init_germanic_plural()
87 GERMANIC_PLURAL.operation = not_equal; in init_germanic_plural()
/netbsd-src/external/gpl2/texinfo/dist/intl/
H A Dplural-exp.c40 .operation = var,
45 .operation = num,
54 .operation = not_equal,
82 plvar.operation = var; in init_germanic_plural()
85 plone.operation = num; in init_germanic_plural()
89 GERMANIC_PLURAL.operation = not_equal; in init_germanic_plural()
/netbsd-src/external/gpl3/gcc/dist/intl/
H A Dplural-exp.c38 .operation = var,
43 .operation = num,
52 .operation = not_equal,
80 plvar.operation = var; in init_germanic_plural()
83 plone.operation = num; in init_germanic_plural()
87 GERMANIC_PLURAL.operation = not_equal; in init_germanic_plural()
/netbsd-src/external/gpl3/gcc.old/dist/intl/
H A Dplural-exp.c38 .operation = var,
43 .operation = num,
52 .operation = not_equal,
80 plvar.operation = var; in init_germanic_plural()
83 plone.operation = num; in init_germanic_plural()
87 GERMANIC_PLURAL.operation = not_equal; in init_germanic_plural()
/netbsd-src/external/gpl2/grep/dist/intl/
H A Dplural-exp.c40 .operation = var,
45 .operation = num,
54 .operation = not_equal,
82 plvar.operation = var; in init_germanic_plural()
85 plone.operation = num; in init_germanic_plural()
89 GERMANIC_PLURAL.operation = not_equal; in init_germanic_plural()
/netbsd-src/external/gpl3/gdb.old/dist/intl/
H A Dplural-exp.c38 .operation = var,
43 .operation = num,
52 .operation = not_equal,
80 plvar.operation = var; in init_germanic_plural()
83 plone.operation = num; in init_germanic_plural()
87 GERMANIC_PLURAL.operation = not_equal; in init_germanic_plural()
/netbsd-src/external/gpl3/binutils.old/dist/intl/
H A Dplural-exp.c38 .operation = var,
43 .operation = num,
52 .operation = not_equal,
80 plvar.operation = var; in init_germanic_plural()
83 plone.operation = num; in init_germanic_plural()
87 GERMANIC_PLURAL.operation = not_equal; in init_germanic_plural()

12345678910>>...79