HomeSort by: relevance | last modified time | path
    Searched defs:operation (Results 1 - 25 of 142) sorted by relevancy

1 2 3 4 5 6

  /src/usr.bin/vndcompress/
main.c 44 static int (*operation)(int, char **, const struct options *) = &vndcompress; variable
56 operation = &vndcompress;
58 operation = &vnduncompress;
83 operation = &vndcompress;
92 operation = &vnduncompress;
150 if (operation == &vnduncompress) {
154 assert(operation == &vndcompress);
164 return (*operation)(argc, argv, O);
main.c 44 static int (*operation)(int, char **, const struct options *) = &vndcompress; variable
56 operation = &vndcompress;
58 operation = &vnduncompress;
83 operation = &vndcompress;
92 operation = &vnduncompress;
150 if (operation == &vnduncompress) {
154 assert(operation == &vndcompress);
164 return (*operation)(argc, argv, O);
  /src/external/bsd/libevent/dist/
epolltable-internal.h 137 static const struct operation { struct
epolltable-internal.h 137 static const struct operation { struct
  /src/external/bsd/ntp/dist/sntp/libevent/
epolltable-internal.h 138 static const struct operation { struct
epolltable-internal.h 138 static const struct operation { struct
  /src/usr.bin/pwhash/
pwhash.c 100 print_passwd(char *string, int operation, const char *extra)
107 switch(operation) {
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...]
pwhash.c 100 print_passwd(char *string, int operation, const char *extra)
107 switch(operation) {
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...]
  /src/sys/arch/xen/include/
xenring.h 37 uint8_t operation; /* BLKIF_OP_??? */ member in struct:blkif_x86_32_request
48 uint8_t operation; /* copied from request */ member in struct:blkif_x86_32_response
55 uint8_t operation; /* BLKIF_OP_INDIRECT */ member in struct:blkif_x86_32_request_indirect
70 uint8_t operation; /* BLKIF_OP_??? */ member in struct:blkif_x86_64_request
81 uint8_t operation; /* copied from request */ member in struct:blkif_x86_64_response
87 uint8_t operation; /* BLKIF_OP_INDIRECT */ member in struct:blkif_x86_64_request_indirect
xenring.h 37 uint8_t operation; /* BLKIF_OP_??? */ member in struct:blkif_x86_32_request
48 uint8_t operation; /* copied from request */ member in struct:blkif_x86_32_response
55 uint8_t operation; /* BLKIF_OP_INDIRECT */ member in struct:blkif_x86_32_request_indirect
70 uint8_t operation; /* BLKIF_OP_??? */ member in struct:blkif_x86_64_request
81 uint8_t operation; /* copied from request */ member in struct:blkif_x86_64_response
87 uint8_t operation; /* BLKIF_OP_INDIRECT */ member in struct:blkif_x86_64_request_indirect
  /src/crypto/external/apache2/openssl/dist/test/
filterprov.c 31 int operation; member in struct:filter_prov_globals_st::__anon686
89 if (globs->dispatch[i].operation == operation_id) {
198 * Set a filter for the given operation id. The filter string is a colon
201 * a given operation id then all algorithms are made available.
203 int filter_provider_set_filter(int operation, const char *filterstr)
212 operation,
257 globs->dispatch[globs->num_dispatch].operation = operation;
263 OSSL_PROVIDER_unquery_operation(globs->deflt, operation, provalgs);
filterprov.c 31 int operation; member in struct:filter_prov_globals_st::__anon686
89 if (globs->dispatch[i].operation == operation_id) {
198 * Set a filter for the given operation id. The filter string is a colon
201 * a given operation id then all algorithms are made available.
203 int filter_provider_set_filter(int operation, const char *filterstr)
212 operation,
257 globs->dispatch[globs->num_dispatch].operation = operation;
263 OSSL_PROVIDER_unquery_operation(globs->deflt, operation, provalgs);
  /src/crypto/external/bsd/openssl/dist/test/
filterprov.c 29 int operation; member in struct:filter_prov_globals_st::__anon1718
87 if (globs->dispatch[i].operation == operation_id) {
159 * Set a filter for the given operation id. The filter string is a colon
162 * a given operation id then all algorithms are made available.
164 int filter_provider_set_filter(int operation, const char *filterstr)
173 operation,
218 globs->dispatch[globs->num_dispatch].operation = operation;
224 OSSL_PROVIDER_unquery_operation(globs->deflt, operation, provalgs);
filterprov.c 29 int operation; member in struct:filter_prov_globals_st::__anon1718
87 if (globs->dispatch[i].operation == operation_id) {
159 * Set a filter for the given operation id. The filter string is a colon
162 * a given operation id then all algorithms are made available.
164 int filter_provider_set_filter(int operation, const char *filterstr)
173 operation,
218 globs->dispatch[globs->num_dispatch].operation = operation;
224 OSSL_PROVIDER_unquery_operation(globs->deflt, operation, provalgs);
  /src/external/gpl2/gettext/dist/gettext-runtime/intl/
plural-exp.h 47 module, /* Modulo operation. */
60 } operation; member in struct:expression
plural-exp.h 47 module, /* Modulo operation. */
60 } operation; member in struct:expression
  /src/external/gpl2/grep/dist/intl/
plural-exp.h 53 module, /* Modulo operation. */
66 } operation; member in struct:expression
plural-exp.h 53 module, /* Modulo operation. */
66 } operation; member in struct:expression
  /src/external/gpl2/lvm2/dist/lib/locking/
file_locking.c 136 static int _do_flock(const char *file, int *fd, int operation, uint32_t nonblock)
143 file, operation == LOCK_EX ? 'W' : 'R', nonblock ? ' ' : 'B');
154 operation |= LOCK_NB;
158 r = flock(*fd, operation);
180 static int _do_write_priority_flock(const char *file, int *fd, int operation, uint32_t nonblock)
189 if (operation == LOCK_EX) {
190 r = _do_flock(file, fd, operation, nonblock);
194 r = _do_flock(file, fd, operation, nonblock);
203 int operation; local
212 operation = LOCK_SH
    [all...]
file_locking.c 136 static int _do_flock(const char *file, int *fd, int operation, uint32_t nonblock)
143 file, operation == LOCK_EX ? 'W' : 'R', nonblock ? ' ' : 'B');
154 operation |= LOCK_NB;
158 r = flock(*fd, operation);
180 static int _do_write_priority_flock(const char *file, int *fd, int operation, uint32_t nonblock)
189 if (operation == LOCK_EX) {
190 r = _do_flock(file, fd, operation, nonblock);
194 r = _do_flock(file, fd, operation, nonblock);
203 int operation; local
212 operation = LOCK_SH
    [all...]
  /src/external/gpl2/texinfo/dist/intl/
plural-exp.h 49 module, /* Modulo operation. */
62 } operation; member in struct:expression
plural-exp.h 49 module, /* Modulo operation. */
62 } operation; member in struct:expression
  /src/external/gpl3/gcc.old/dist/intl/
plural-exp.h 57 module, /* Modulo operation. */
70 } operation; member in struct:expression
  /src/external/gpl3/gdb.old/dist/gdb/
expression.h 81 class operation;
82 typedef std::unique_ptr<operation> operation_up;
84 /* Base class for an operation. An operation is a single component of
87 class operation class in namespace:expr
91 operation () = default;
92 DISABLE_COPY_AND_ASSIGN (operation);
96 virtual ~operation () = default;
98 /* Evaluate this operation. */
103 /* Evaluate this operation in a context where C-like coercion i
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
expression.h 81 class operation;
82 typedef std::unique_ptr<operation> operation_up;
84 /* Base class for an operation. An operation is a single component of
87 class operation class in namespace:expr
91 operation () = default;
92 DISABLE_COPY_AND_ASSIGN (operation);
96 virtual ~operation () = default;
98 /* Evaluate this operation. */
103 /* Evaluate this operation in a context where C-like coercion i
    [all...]

Completed in 35 milliseconds

1 2 3 4 5 6