Searched refs:mode (Results 101 - 125 of 389) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/vfs/
H A Dfopen.c167 barrelfish_oldc_fopen(const char *fname, const char *mode) argument
176 //debug_printf("fopen('%s', '%s')\n", fname, mode);
178 if (mode[0] == 'r') { // read: file must exist
194 if (mode[0] == 'a') {
/barrelfish-2018-10-04/usr/bench/bulk_sdma/
H A Dmain.c114 static void bench_run(enum TransferMode mode, bool iterate) argument
120 switch(mode) {
172 TRANSFER_MODE[mode], len, iterate, cycles[i]);
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/lib/
H A Dspell.pl62 :- mode spell_handler(+,+,+).
94 :- mode confirm(+,+,-).
119 :- mode callcorrect(+,+,+).
130 :- mode correct(+,-,+).
153 :- mode current_pred(-,+).
161 :- mode spell1(+,-,+).
180 :- mode checkldiff1(+).
181 :- mode checkldiff2(+).
199 :- mode convldiff(+,-,+,+,-,-).
218 :- mode spell
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/
H A Dcrypto.h356 int CRYPTO_mem_ctrl(int mode);
418 void CRYPTO_lock(int mode, int type,const char *file,int line);
419 void CRYPTO_set_locking_callback(void (*func)(int mode,int type,
421 void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
457 void CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function)(int mode, struct CRYPTO_dynlock_value *l, const char *file, int line));
460 void (*CRYPTO_get_dynlock_lock_callback(void))(int mode, struct CRYPTO_dynlock_value *l, const char *file,int line);
/barrelfish-2018-10-04/include/openssl/
H A Dcrypto.h356 int CRYPTO_mem_ctrl(int mode);
418 void CRYPTO_lock(int mode, int type,const char *file,int line);
419 void CRYPTO_set_locking_callback(void (*func)(int mode,int type,
421 void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
457 void CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function)(int mode, struct CRYPTO_dynlock_value *l, const char *file, int line));
460 void (*CRYPTO_get_dynlock_lock_callback(void))(int mode, struct CRYPTO_dynlock_value *l, const char *file,int line);
/barrelfish-2018-10-04/lib/gdtoa/
H A Dgdtoa.h106 extern char* dtoa ANSI((double d, int mode, int ndigits, int *decpt,
109 int mode, int ndigits, int *decpt, char **rve));
/barrelfish-2018-10-04/lib/libc/stdio/
H A Dfopencookie.c49 fopencookie(void *cookie, const char *mode, cookie_io_functions_t io_funcs) argument
57 if ((flags = __sflags(mode, &oflags)) == 0)
/barrelfish-2018-10-04/lib/octopus/client/
H A Dpubsub.c35 uint64_t fn, octopus_mode_t mode, const char *record,
45 handler_fn(mode, record, state);
34 subscription_handler(struct octopus_binding *b, subscription_t id, uint64_t fn, octopus_mode_t mode, const char *record, uint64_t st) argument
H A Dgetset.c166 * \param mode A combination of mode bits (see getset.h).
174 errval_t oct_mset(oct_mode_t mode, const char* query, ...) argument
187 err = cl->call_seq.set(cl, buf, mode, NOP_TRIGGER, false, NULL, NULL,
202 * Additonally the mode how a record is set can be specified.
204 * \param mode A combination of mode bits (see getset.h).
217 errval_t oct_set_get(oct_mode_t mode, char** record, const char* query, ...) argument
229 err = cl->call_seq.set(cl, buf, mode, NOP_TRIGGER, true, reply.record,
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/engines/zencod/
H A Dhw_zencod.h140 unsigned char *index_1, unsigned char *index_2, int mode ) ;
148 /* mode : xdes mode (encrypt or decrypt) */
149 /* Be carefull : In DES mode key_1 = key_2 = key_3 (as far as i can see !!) */
151 const KEY *key_2, const KEY *key_3, const KEY *iv, int mode ) ;
/barrelfish-2018-10-04/lib/tftp/
H A Dtftp_internal.h115 ///< operation mode of the TFTP connection
117 TFTP_MODE_INVALID, ///< invalid operation mode
119 TFTP_MODE_NETASCII, ///< use netsascii mode
120 TFTP_MODE_MAIL, ///< use mail mode
124 * \brief sets the transfer mode in a buffer
126 * \param buf buffer where to write the transfer mode to
127 * \param mode transfer mode to write
131 static inline size_t set_mode(void *buf, tftp_mode_t mode) argument
133 switch(mode) {
[all...]
/barrelfish-2018-10-04/lib/tommath/
H A Dmakefile.shared6 CC = libtool --mode=compile --tag=CC gcc
86 libtool --mode=link gcc *.lo -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION)
90 libtool --mode=install install -c $(LIBNAME) $(DESTDIR)$(LIBPATH)/$(LIBNAME)
96 libtool --mode=link gcc -o test demo/demo.o $(LIBNAME_S)
/barrelfish-2018-10-04/include/
H A Dgdtoa.h106 extern char* dtoa ANSI((double d, int mode, int ndigits, int *decpt,
109 int mode, int ndigits, int *decpt, char **rve));
/barrelfish-2018-10-04/lib/barrelfish/
H A Dsys_debug.c83 errval_t sys_debug_set_breakpoint(uintptr_t addr, uint8_t mode, uint8_t length) argument
86 DEBUG_SET_BREAKPOINT, addr, mode, length).error;
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Den_cq.c48 int entries, int ring, enum cq_type mode, int node) {
70 if (mode == RX) {
82 cq->is_tx = mode;
47 mlx4_en_create_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq **pcq, int entries, int ring, enum cq_type mode, int node) argument
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Dfile.h139 alloc_file(int mode, const struct file_operations *fops) argument
147 filp->f_mode = mode;
/barrelfish-2018-10-04/usr/kaluga/
H A Dstart_decnet.c120 static void decnet_change_event(octopus_mode_t mode, const char* device_record, argument
125 if (mode & OCT_ON_SET) {
H A Dstart_pci.c41 static void pci_change_event(octopus_mode_t mode, const char* device_record,
44 static void spawnd_up_event(octopus_mode_t mode, const char* spawnd_record, argument
47 assert(mode & OCT_ON_SET);
336 static void pci_change_event(octopus_mode_t mode, const char* device_record, argument
341 if (mode & OCT_ON_SET) {
492 static void bridge_change_event(octopus_mode_t mode, const char* bridge_record, argument
495 if (mode & OCT_ON_SET) {
/barrelfish-2018-10-04/lib/lua/src/
H A Dldo.h30 const char *mode);
/barrelfish-2018-10-04/include/barrelfish/
H A Dsys_debug.h42 errval_t sys_debug_set_breakpoint(uintptr_t addr, uint8_t mode, uint8_t length);
/barrelfish-2018-10-04/include/octopus_server/
H A Dservice.h48 octopus_mode_t mode; member in struct:oct_reply_state
/barrelfish-2018-10-04/lib/bench/
H A Dbench_ctl.c17 bench_ctl_t *bench_ctl_init(enum bench_ctl_mode mode, argument
24 ctl->mode = mode;
28 if (mode == BENCH_MODE_FIXEDRUNS) {
/barrelfish-2018-10-04/lib/devif/
H A Dqueue_interface.c56 ctl_enq.mode = BENCH_MODE_FIXEDRUNS;
61 ctl_deq.mode = BENCH_MODE_FIXEDRUNS;
66 ctl_reg.mode = BENCH_MODE_FIXEDRUNS;
71 ctl_dereg.mode = BENCH_MODE_FIXEDRUNS;
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/widget/
H A Dutil.tcl579 file { set mode - }
580 fifo { set mode p }
581 default { set mode [string index $st(type) 0] }
587 append mode $st(-readonly) $st(-hidden) \
589 append res [format $fmt $mode $st(size) \
593 append mode $st(-readonly) $st(-hidden)
594 append res [format $fmt $mode $st(-creator) \
600 [expr {$st(mode)&0777}]] {}] {
601 append mode $s($j)
603 append res [format $fmt $mode
[all...]
/barrelfish-2018-10-04/lib/lwip2/src/apps/tftp/
H A Dtftp_server.c230 char mode[TFTP_MAX_MODE_LEN]; local
249 /* find \0 in pbuf -> end of mode string */
251 if((u16_t)(mode_end_offset-filename_end_offset) > sizeof(mode)) {
255 pbuf_copy_partial(p, mode, mode_end_offset-filename_end_offset, filename_end_offset+1);
257 tftp_state.handle = tftp_state.ctx->open(filename, mode, opcode == PP_HTONS(TFTP_WRQ));
267 LWIP_DEBUGF(TFTP_DEBUG | LWIP_DBG_STATE, (" for '%s' mode '%s'\n", filename, mode));

Completed in 319 milliseconds

1234567891011>>