Searched refs:cmd (Results 101 - 125 of 251) sorted by relevance

1234567891011

/barrelfish-master/usr/pci/
H A Dpci.c507 pci_hdr0_command_t cmd = pci_hdr0_command_rd(&hdr); local
508 cmd.int_dis = 0;
509 pci_hdr0_command_wr(&hdr, cmd);
1021 pci_hdr0_command_t cmd = pci_hdr0_command_rd(&hdr); local
1023 cmd.mem_space = 0;
1024 cmd.io_space = 0; // XXX: not handled in setup yet
1031 // cmd.master = 0;
1034 //pci_hdr0_command_wr(&hdr, cmd);
1528 pci_hdr1_command_t cmd; local
1546 cmd
1618 pci_hdr0_command_t cmd = pci_hdr0_command_rd(&devhdr); local
1671 pci_hdr0_command_t cmd = pci_hdr0_command_rd(&devhdr); local
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/comp/
H A Dc_zlib.c448 static long bio_zlib_ctrl(BIO *b, int cmd, long num, void *ptr);
449 static long bio_zlib_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp);
714 static long bio_zlib_ctrl(BIO *b, int cmd, long num, void *ptr) argument
721 switch (cmd)
777 ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
782 ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
791 static long bio_zlib_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) argument
796 BIO_callback_ctrl(b->next_bio, cmd, fp);
/barrelfish-master/lib/openssl-1.0.0d/crypto/dso/
H A Ddso.h162 long (*dso_ctrl)(DSO *dso, int cmd, long larg, void *parg);
226 long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg);
H A Ddso_lib.c309 long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg) argument
319 switch(cmd)
337 return(dso->meth->dso_ctrl(dso,cmd,larg,parg));
/barrelfish-master/include/openssl/
H A Ddso.h162 long (*dso_ctrl)(DSO *dso, int cmd, long larg, void *parg);
226 long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg);
/barrelfish-master/lib/devif/backends/null/
H A Ddevif_backend_null.c37 static errval_t null_control(struct devq* q, uint64_t cmd, uint64_t value, argument
41 return que->q->f.ctrl(que->q, cmd, value, ret);
/barrelfish-master/lib/openssl-1.0.0d/apps/
H A Ds_apps.h164 long MS_CALLBACK bio_dump_callback(BIO *bio, int cmd, const char *argp,
/barrelfish-master/include/arch/x86_64/barrelfish/
H A Dinvocations_arch.h114 static inline errval_t invoke_iocap_in(struct capref iocap, enum io_cmd cmd, argument
117 struct sysret sysret = cap_invoke2(iocap, cmd, port);
126 static inline errval_t invoke_iocap_out(struct capref iocap, enum io_cmd cmd, argument
129 return cap_invoke3(iocap, cmd, port, data).error;
/barrelfish-master/usr/drivers/solarflare/
H A Dmcdi_rpc.h134 errval_t mcdi_rpc(unsigned cmd, const uint8_t *in, uint32_t inlen,
/barrelfish-master/lib/lua/src/
H A Dloslib.c81 const char *cmd = luaL_optstring(L, 1, NULL); local
82 int stat = system(cmd);
83 if (cmd != NULL)
/barrelfish-master/lib/openssl-1.0.0d/crypto/bio/
H A Dbss_log.c118 static long MS_CALLBACK slg_ctrl(BIO *h, int cmd, long arg1, void *arg2);
212 static long MS_CALLBACK slg_ctrl(BIO *b, int cmd, long num, void *ptr) argument
214 switch (cmd)
H A Dbss_mem.c68 static long mem_ctrl(BIO *h, int cmd, long arg1, void *arg2);
197 static long mem_ctrl(BIO *b, int cmd, long num, void *ptr) argument
204 switch (cmd)
H A Dbss_rtcp.c95 static long rtcp_ctrl(BIO *h,int cmd,long arg1,void *arg2);
250 static long rtcp_ctrl(BIO *b, int cmd, long num, void *ptr) argument
254 switch (cmd)
H A Dbss_acpt.c103 static long acpt_ctrl(BIO *h, int cmd, long arg1, void *arg2);
346 static long acpt_ctrl(BIO *b, int cmd, long num, void *ptr) argument
355 switch (cmd)
H A Dbss_file.c102 static long MS_CALLBACK file_ctrl(BIO *h, int cmd, long arg1, void *arg2);
273 static long MS_CALLBACK file_ctrl(BIO *b, int cmd, long num, void *ptr) argument
280 switch (cmd)
/barrelfish-master/lib/openssl-1.0.0d/crypto/x509/
H A Dby_file.c71 static int by_file_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc,
92 static int by_file_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl, argument
98 switch (cmd)
/barrelfish-master/include/sys/
H A Dcapsicum.h367 int cap_ioctl_check(struct filedesc *fdp, int fd, u_long cmd);
368 int cap_fcntl_check_fde(struct filedescent *fde, int cmd);
369 int cap_fcntl_check(struct filedesc *fdp, int fd, int cmd);
/barrelfish-master/lib/posixcompat/
H A Dshm.c188 int shmctl(int shmid, int cmd, struct shmid_ds *buf) argument
202 POSIXCOMPAT_DEBUG("shmctl(%d, %d, %p)\n", shmid, cmd, buf);
204 switch(cmd) {
/barrelfish-master/usr/eclipseclp/lib_tcl/widget/
H A Dconsole.tcl428 # cmd - the command to evaluate
433 ;proc EvalCmd {w cmd} {
439 if {[string compare {} $cmd]} {
444 if {[string match !! $cmd]} {
445 set code [catch {EvalSlave history event $ev} cmd]
446 if {!$code} {$w insert output $cmd\n stdin}
447 } elseif {[regexp {^!(.+)$} $cmd dummy evnt]} {
449 set code [catch {EvalSlave history event $ev} cmd]
450 if {!$code && ![string match ${evnt}* $cmd]} {
451 set code [catch {EvalSlave history event $evnt} cmd]
[all...]
H A Dutil.tcl476 # cmd command name
480 ;proc which cmd {
482 set lcmd [list $cmd]
494 set result "$cmd: aliased to \"[alias $ocmd]\""
495 } elseif {[lsearch -exact $aliases $cmd] > -1} {
496 set result "$cmd: aliased to \"[alias $cmd]\""
504 set result "$cmd: procedure $ocmd"
506 set result "$cmd: command"
509 if {[info exists auto_index($cmd)]} {
[all...]
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Dssl_locl.h841 long ssl2_ctrl(SSL *s,int cmd, long larg, void *parg);
842 long ssl2_ctx_ctrl(SSL_CTX *s,int cmd, long larg, void *parg);
843 long ssl2_callback_ctrl(SSL *s,int cmd, void (*fp)(void));
844 long ssl2_ctx_callback_ctrl(SSL_CTX *s,int cmd, void (*fp)(void));
897 long ssl3_ctrl(SSL *s,int cmd, long larg, void *parg);
898 long ssl3_ctx_ctrl(SSL_CTX *s,int cmd, long larg, void *parg);
899 long ssl3_callback_ctrl(SSL *s,int cmd, void (*fp)(void));
900 long ssl3_ctx_callback_ctrl(SSL_CTX *s,int cmd, void (*fp)(void));
1006 long tls1_ctrl(SSL *s,int cmd, long larg, void *parg);
1007 long tls1_callback_ctrl(SSL *s,int cmd, voi
[all...]
/barrelfish-master/lib/libc/net/
H A Drcmd.c77 const char *cmd, int *fd2p)
79 return rcmd_af(ahost, rport, locuser, remuser, cmd, fd2p, AF_INET);
84 const char *cmd, int *fd2p, int af)
103 cmd, p));
112 cmd, NULL));
289 (void)_write(s, cmd, strlen(cmd)+1);
76 rcmd(char **ahost, int rport, const char *locuser, const char *remuser, const char *cmd, int *fd2p) argument
83 rcmd_af(char **ahost, int rport, const char *locuser, const char *remuser, const char *cmd, int *fd2p, int af) argument
/barrelfish-master/lib/libc/db/test/btree.tests/
H A Dmain.c50 char *cmd; member in struct:cmd_table
217 for (i = 0; commands[i].cmd != NULL; i++)
218 if (strncmp(commands[i].cmd, argv[0],
219 strlen(commands[i].cmd)) == 0)
222 if (commands[i].cmd == NULL) {
434 for (i = 0; commands[i].cmd; i++)
/barrelfish-master/include/arch/x86_32/barrelfish/
H A Dinvocations_arch.h36 // invoke_bits << 16 | cmd << 8 | syscall_invoke
385 static inline errval_t invoke_iocap_in(struct capref iocap, enum io_cmd cmd, argument
391 assert(cmd <= 0xff);
394 syscall3((invoke_bits << 16) | (cmd << 8) | SYSCALL_INVOKE,
404 static inline errval_t invoke_iocap_out(struct capref iocap, enum io_cmd cmd, argument
410 assert(cmd <= 0xff);
411 return syscall4((invoke_bits << 16) | (cmd << 8) | SYSCALL_INVOKE,
/barrelfish-master/lib/openssl-1.0.0d/crypto/engine/
H A Deng_dyn.c69 static int dynamic_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void));
315 static int dynamic_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void)) argument
333 switch(cmd)

Completed in 279 milliseconds

1234567891011