Searched refs:cmd (Results 26 - 50 of 251) sorted by relevance

1234567891011

/barrelfish-master/tools/molly/
H A Dbuild_multiboot.c75 char cmd[1024], args[1024], image[1024]; local
79 cmd[0] = args[0] = image[0] = line[0] = '\0';
82 sscanf(line, "%s %s %[^\n]", cmd, image, args);
84 if(!strcmp(cmd, "kernel")) {
91 } else if(!strcmp(cmd, "module")) {
99 } else if(!strcmp(cmd, "mmap")) {
111 for(int i = 0; i < strlen(cmd); i++) {
112 if(cmd[i] == '#') {
115 if(!isspace(cmd[i])) {
121 printf("Ignoring command '%s'\n", cmd);
[all...]
/barrelfish-master/lib/posixcompat/
H A Dfcntl.c22 int fcntl(int fd, int cmd, ...) argument
27 va_start(arg, cmd);
35 switch(cmd) {
91 retval = lwip_fcntl(e->fd, cmd, flags);
120 retval = lwip_fcntl(e->fd, cmd, 0);
/barrelfish-master/usr/drivers/solarflare/
H A Dmcdi_rpc.c43 errval_t mcdi_rpc(unsigned cmd, const uint8_t *in, uint32_t inlen, argument
60 hdr |= cmd;
92 if (cmd == CMD_REBOOT && error && !rlen) {
94 } else if(error && !(cmd == CMD_REBOOT)){
97 DEBUG("AN ERROR OCCURRED: CMD %d, ERROR %d \n",cmd , reg);
/barrelfish-master/usr/bench/distops/
H A Dmain.c51 void broadcast_cmd(uint32_t cmd, uint32_t arg) argument
64 err = bench_distops_cmd__tx(bench_state->nodes[i], NOP_CONT, cmd, arg);
66 DEBUG_ERR(err, "sending cmd msg to binding %p\n", bench_state->nodes[i]);
72 void broadcast_caps(uint32_t cmd, uint32_t arg, struct capref cap1) argument
85 err = bench_distops_caps__tx(bench_state->nodes[i], NOP_CONT, cmd, arg, cap1);
94 void multicast_caps(uint32_t cmd, uint32_t arg, struct capref cap1, argument
112 cmd, arg, cap1);
123 void unicast_cmd(coreid_t nodeid, uint32_t cmd, uint32_t arg) argument
138 err = bench_distops_cmd__tx(bench_state->nodes[i], NOP_CONT, cmd, arg);
139 PANIC_IF_ERR(err, "cmd unicas
164 mgmt_rx_cmd(struct bench_distops_binding *b, uint32_t cmd, uint32_t arg) argument
172 mgmt_rx_caps(struct bench_distops_binding *b, uint32_t cmd, uint32_t arg, struct capref cap1) argument
270 node_rx_cmd(struct bench_distops_binding *b, uint32_t cmd, uint32_t arg) argument
278 node_rx_caps(struct bench_distops_binding *b, uint32_t cmd, uint32_t arg, struct capref cap1) argument
[all...]
H A Ddelete_cnode_last_copy_2.c115 void mgmt_cmd(uint32_t cmd, uint32_t arg, struct bench_distops_binding *b) argument
118 switch(cmd) {
138 printf("mgmt node got unknown command %d over binding %p\n", cmd, b);
143 void mgmt_cmd_caps(uint32_t cmd, uint32_t arg, struct capref cap1, argument
147 cmd, arg, b);
189 void node_cmd(uint32_t cmd, uint32_t arg, struct bench_distops_binding *b) argument
194 switch(cmd) {
244 printf("node %d got command %"PRIu32"\n", my_core_id, cmd);
249 void node_cmd_caps(uint32_t cmd, uint32_t arg, struct capref cap1, argument
252 switch (cmd) {
[all...]
H A Ddelete_last_copy.c119 void mgmt_cmd(uint32_t cmd, uint32_t arg, struct bench_distops_binding *b) argument
122 switch(cmd) {
151 printf("mgmt node got unknown command %d over binding %p\n", cmd, b);
156 void mgmt_cmd_caps(uint32_t cmd, uint32_t arg, struct capref cap1, argument
160 cmd, arg, b);
214 void node_cmd(uint32_t cmd, uint32_t arg, struct bench_distops_binding *b) argument
219 switch(cmd) {
268 printf("node %d got command %"PRIu32"\n", my_core_id, cmd);
273 void node_cmd_caps(uint32_t cmd, uint32_t arg, struct capref cap1, argument
279 switch (cmd) {
[all...]
H A Ddelete_local_copy.c123 void mgmt_cmd(uint32_t cmd, uint32_t arg, struct bench_distops_binding *b) argument
126 switch(cmd) {
155 printf("mgmt node got unknown command %d over binding %p\n", cmd, b);
160 void mgmt_cmd_caps(uint32_t cmd, uint32_t arg, struct capref cap1, argument
164 cmd, arg, b);
218 void node_cmd(uint32_t cmd, uint32_t arg, struct bench_distops_binding *b) argument
223 switch(cmd) {
274 printf("node %d got command %"PRIu32"\n", my_core_id, cmd);
279 void node_cmd_caps(uint32_t cmd, uint32_t arg, struct capref cap1, argument
285 switch (cmd) {
[all...]
H A Dnoop_invocation.c125 void mgmt_cmd(uint32_t cmd, uint32_t arg, struct bench_distops_binding *b) argument
128 switch(cmd) {
168 printf("mgmt node got unknown command %d over binding %p\n", cmd, b);
173 void mgmt_cmd_caps(uint32_t cmd, uint32_t arg, struct capref cap1, argument
177 cmd, arg, b);
222 void node_cmd(uint32_t cmd, uint32_t arg, struct bench_distops_binding *b) argument
230 switch(cmd) {
271 printf("node %d got command %"PRIu32"\n", my_core_id, cmd);
276 void node_cmd_caps(uint32_t cmd, uint32_t arg, struct capref cap1, argument
283 switch (cmd) {
[all...]
H A Dretype_no_remote.c119 void mgmt_cmd(uint32_t cmd, uint32_t arg, struct bench_distops_binding *b) argument
122 switch(cmd) {
151 printf("mgmt node got unknown command %d over binding %p\n", cmd, b);
156 void mgmt_cmd_caps(uint32_t cmd, uint32_t arg, struct capref cap1, argument
160 cmd, arg, b);
214 void node_cmd(uint32_t cmd, uint32_t arg, struct bench_distops_binding *b) argument
219 switch(cmd) {
271 printf("node %d got command %"PRIu32"\n", my_core_id, cmd);
276 void node_cmd_caps(uint32_t cmd, uint32_t arg, struct capref cap1, argument
282 switch (cmd) {
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/bio/
H A Dbf_nbio.c72 static long nbiof_ctrl(BIO *h,int cmd,long arg1,void *arg2);
75 static long nbiof_callback_ctrl(BIO *h,int cmd,bio_info_cb *fp);
204 static long nbiof_ctrl(BIO *b, int cmd, long num, void *ptr) argument
209 switch (cmd)
213 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
220 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
226 static long nbiof_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) argument
231 switch (cmd)
234 ret=BIO_callback_ctrl(b->next_bio,cmd,fp);
H A Dbss_null.c68 static long null_ctrl(BIO *h, int cmd, long arg1, void *arg2);
114 static long null_ctrl(BIO *b, int cmd, long num, void *ptr) argument
118 switch (cmd)
/barrelfish-master/lib/devif/backends/net/mlx4/include/infiniband/
H A Ddriver.h61 struct ibv_get_context *cmd, size_t cmd_size,
65 struct ibv_query_device *cmd, size_t cmd_size);
67 struct ibv_port_attr *port_attr, struct ibv_query_port *cmd,
74 struct ibv_alloc_pd *cmd, size_t cmd_size,
79 uint64_t hca_va, int access, struct ibv_mr *mr, struct ibv_reg_mr *cmd,
84 struct ibv_create_cq *cmd, size_t cmd_size,
89 int ibv_cmd_resize_cq(struct ibv_cq *cq, int cqe, struct ibv_resize_cq *cmd,
94 struct ibv_srq_init_attr *attr, struct ibv_create_srq *cmd,
98 struct ibv_create_xrc_srq *cmd, size_t cmd_size,
101 int srq_attr_mask, struct ibv_modify_srq *cmd, size_
[all...]
/barrelfish-master/lib/blk/blk_ahci/
H A Dahci_dev.c17 ahci_port_cmd_t cmd = ahci_port_cmd_rd(port); local
18 uint8_t st = ahci_port_cmd_st_extract(cmd);
19 uint8_t cr = ahci_port_cmd_cr_extract(cmd);
20 uint8_t fre = ahci_port_cmd_fre_extract(cmd);
55 ahci_port_cmd_t cmd = ahci_port_cmd_rd(port); local
56 while (ahci_port_cmd_cr_extract(cmd) != 0) {
/barrelfish-master/kernel/arch/x86_32/
H A Dsyscall.c42 int cmd, uintptr_t *args)
57 int cmd, uintptr_t *args)
72 int cmd, uintptr_t *args)
130 static struct sysret handle_retype(struct capability *root, int cmd, uintptr_t *args) argument
135 static struct sysret handle_create(struct capability *root, int cmd, argument
174 static struct sysret handle_mint(struct capability *root, int cmd, uintptr_t *args) argument
180 int cmd, uintptr_t *args)
185 static struct sysret handle_delete(struct capability *root, int cmd, uintptr_t *args) argument
193 int cmd, uintptr_t *args)
201 int cmd, uintptr_
41 handle_dispatcher_setup(struct capability *to, int cmd, uintptr_t *args) argument
56 handle_dispatcher_properties(struct capability *to, int cmd, uintptr_t *args) argument
71 handle_dispatcher_perfmon(struct capability *to, int cmd, uintptr_t *args) argument
179 handle_copy(struct capability *root, int cmd, uintptr_t *args) argument
192 handle_revoke(struct capability *root, int cmd, uintptr_t *args) argument
200 handle_get_state(struct capability *root, int cmd, uintptr_t *args) argument
208 handle_map(struct capability *pgtable, int cmd, uintptr_t *args) argument
227 handle_unmap(struct capability *pgtable, int cmd, uintptr_t *args) argument
245 handle_mapping_destroy(struct capability *mapping, int cmd, uintptr_t *args) argument
252 handle_mapping_modify(struct capability *mapping, int cmd, uintptr_t *args) argument
275 monitor_handle_retype(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
294 monitor_handle_has_descendants(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
312 monitor_handle_delete_last(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
327 monitor_handle_delete_foreigns(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
335 monitor_handle_revoke_mark_tgt(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
347 monitor_handle_revoke_mark_rels(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
359 monitor_handle_delete_step(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
368 monitor_handle_clear_step(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
378 monitor_handle_register(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
385 monitor_get_core_id(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
394 monitor_get_arch_id(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
414 monitor_identify_cap(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
420 monitor_identify_domains_cap(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
439 monitor_cap_has_relations(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
449 monitor_remote_relations(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
464 monitor_create_cap(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
493 monitor_copy_existing(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
511 monitor_nullify_cap(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
520 monitor_handle_sync_timer(struct capability *kern_cap, int cmd, uintptr_t *args) argument
528 handle_frame_identify(struct capability *to, int cmd, uintptr_t *args) argument
542 handle_io(struct capability *to, int cmd, uintptr_t *args) argument
550 monitor_handle_domain_id(struct capability *monitor_cap, int cmd, uintptr_t *args) argument
559 monitor_get_cap_owner(struct capability *monitor_cap, int cmd, uintptr_t *args) argument
570 monitor_set_cap_owner(struct capability *monitor_cap, int cmd, uintptr_t *args) argument
582 monitor_lock_cap(struct capability *monitor_cap, int cmd, uintptr_t *args) argument
593 monitor_unlock_cap(struct capability *monitor_cap, int cmd, uintptr_t *args) argument
607 handle_trace_setup(struct capability *cap, int cmd, uintptr_t *args) argument
631 handle_irqsrc_get_vector(struct capability * to, int cmd, uintptr_t *args) argument
642 handle_irqdest_get_vector(struct capability *to, int cmd, uintptr_t *args) argument
651 handle_irqdest_connect(struct capability *to, int cmd, uintptr_t *args) argument
657 handle_irq_table_alloc(struct capability *to, int cmd, uintptr_t *args) argument
667 handle_irq_table_alloc_dest_cap(struct capability *to, int cmd, uintptr_t *args) argument
673 handle_irq_table_set(struct capability *to, int cmd, uintptr_t *args) argument
678 handle_irq_table_delete(struct capability *to, int cmd, uintptr_t *args) argument
686 handle_idcap_identify(struct capability *cap, int cmd, uintptr_t *args) argument
699 kernel_send_init_ipi(struct capability *cap, int cmd, uintptr_t *args) argument
709 kernel_send_start_ipi(struct capability *cap, int cmd, uintptr_t *args) argument
721 kernel_get_global_phys(struct capability *cap, int cmd, uintptr_t *args) argument
733 kernel_ipi_register(struct capability *cap, int cmd, uintptr_t *args) argument
742 kernel_ipi_delete(struct capability *cap, int cmd, uintptr_t *args) argument
750 handle_ipi_notify_send(struct capability *cap, int cmd, uintptr_t *args) argument
757 dispatcher_dump_ptables(struct capability *cap, int cmd, uintptr_t *args) argument
771 dispatcher_dump_capabilities(struct capability *cap, int cmd, uintptr_t *args) argument
781 kernel_add_kcb(struct capability *kern_cap, int cmd, uintptr_t *args) argument
790 kernel_remove_kcb(struct capability *kern_cap, int cmd, uintptr_t *args) argument
800 kernel_suspend_kcb_sched(struct capability *kern_cap, int cmd, uintptr_t *args) argument
807 handle_kcb_identify(struct capability *to, int cmd, uintptr_t *args) argument
1051 uint8_t cmd = arg0 >> 8; local
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/engine/
H A Deng_ctrl.c103 static int int_ctrl_helper(ENGINE *e, int cmd, long i, void *p, argument
109 if(cmd == ENGINE_CTRL_GET_FIRST_CMD_TYPE)
116 if((cmd == ENGINE_CTRL_GET_CMD_FROM_NAME) ||
117 (cmd == ENGINE_CTRL_GET_NAME_FROM_CMD) ||
118 (cmd == ENGINE_CTRL_GET_DESC_FROM_CMD))
128 if(cmd == ENGINE_CTRL_GET_CMD_FROM_NAME)
149 switch(cmd)
182 int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void)) argument
201 switch(cmd)
214 return int_ctrl_helper(e,cmd,
235 ENGINE_cmd_is_executable(ENGINE *e, int cmd) argument
[all...]
/barrelfish-master/kernel/arch/x86_64/
H A Dsyscall.c51 static struct sysret handle_noop(struct capability *to, int cmd, uintptr_t *args) argument
58 int cmd, uintptr_t *args)
74 int cmd, uintptr_t *args)
115 int cmd, uintptr_t *args)
121 int cmd, uintptr_t *args)
139 int cmd, uintptr_t *args)
196 int cmd, uintptr_t *args)
202 int cmd, uintptr_t *args)
208 int cmd, uintptr_t *args)
216 int cmd, uintptr_
57 handle_dispatcher_setup(struct capability *to, int cmd, uintptr_t *args) argument
73 handle_dispatcher_properties(struct capability *to, int cmd, uintptr_t *args) argument
114 handle_retype(struct capability *root, int cmd, uintptr_t *args) argument
120 handle_create(struct capability *root, int cmd, uintptr_t *args) argument
138 handle_map(struct capability *ptable, int cmd, uintptr_t *args) argument
195 handle_mint(struct capability *root, int cmd, uintptr_t *args) argument
201 handle_copy(struct capability *root, int cmd, uintptr_t *args) argument
207 handle_delete(struct capability *root, int cmd, uintptr_t *args) argument
215 handle_revoke(struct capability *root, int cmd, uintptr_t *args) argument
223 handle_get_state(struct capability *root, int cmd, uintptr_t *args) argument
230 handle_vnode_modify_flags(struct capability *to, int cmd, uintptr_t *args) argument
240 handle_get_size(struct capability *root, int cmd, uintptr_t *args) argument
246 handle_resize(struct capability *root, int cmd, uintptr_t *args) argument
255 handle_cap_identify(struct capability *root, int cmd, uintptr_t *args) argument
265 handle_unmap(struct capability *pgtable, int cmd, uintptr_t *args) argument
285 handle_mapping_destroy(struct capability *mapping, int cmd, uintptr_t *args) argument
292 handle_mapping_modify(struct capability *mapping, int cmd, uintptr_t *args) argument
313 handle_vnode_copy_remap(struct capability *ptable, int cmd, uintptr_t *args) argument
336 handle_inherit(struct capability *dest, int cmd, uintptr_t *args) argument
462 monitor_handle_retype(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
468 monitor_handle_has_descendants(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
481 monitor_handle_is_retypeable(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
494 monitor_handle_delete_last(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
510 monitor_handle_delete_foreigns(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
518 monitor_handle_revoke_mark_tgt(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
530 monitor_handle_revoke_mark_rels(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
538 monitor_handle_delete_step(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
548 monitor_handle_clear_step(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
558 monitor_handle_register(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
569 monitor_get_core_id(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
575 monitor_get_arch_id(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
593 monitor_identify_cap(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
599 monitor_identify_domains_cap(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
619 monitor_cap_has_relations(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
629 monitor_remote_relations(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
644 monitor_create_cap(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
677 monitor_copy_existing(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
692 monitor_nullify_cap(struct capability *kernel_cap, int cmd, uintptr_t *args) argument
701 monitor_handle_sync_timer(struct capability *kern_cap, int cmd, uintptr_t *args) argument
708 monitor_get_platform(struct capability *kern_cap, int cmd, uintptr_t *args) argument
721 monitor_reclaim_ram(struct capability *kern_cap, int cmd, uintptr_t *args) argument
730 handle_clean_dirty_bits(struct capability *to, int cmd, uintptr_t *args) argument
764 handle_io(struct capability *to, int cmd, uintptr_t *args) argument
772 handle_vmread(struct capability *to, int cmd, uintptr_t *args) argument
790 handle_vmwrite(struct capability *to, int cmd, uintptr_t *args) argument
808 handle_vmptrld(struct capability *to, int cmd, uintptr_t *args) argument
822 handle_vmclear(struct capability *to, int cmd, uintptr_t *args) argument
838 handle_dispatcher_setup_guest(struct capability *to, int cmd, uintptr_t *args) argument
937 monitor_handle_domain_id(struct capability *monitor_cap, int cmd, uintptr_t *args) argument
946 monitor_get_cap_owner(struct capability *monitor_cap, int cmd, uintptr_t *args) argument
957 monitor_set_cap_owner(struct capability *monitor_cap, int cmd, uintptr_t *args) argument
969 monitor_lock_cap(struct capability *monitor_cap, int cmd, uintptr_t *args) argument
980 monitor_unlock_cap(struct capability *monitor_cap, int cmd, uintptr_t *args) argument
994 handle_trace_setup(struct capability *cap, int cmd, uintptr_t *args) argument
1018 handle_irqsrc_get_vec_start(struct capability * to, int cmd, uintptr_t *args) argument
1028 handle_irqsrc_get_vec_end(struct capability * to, int cmd, uintptr_t *args) argument
1039 handle_irqdest_get_vector(struct capability *to, int cmd, uintptr_t *args) argument
1048 handle_irqdest_get_cpu(struct capability *to, int cmd, uintptr_t *args) argument
1057 handle_irqdest_connect(struct capability *to, int cmd, uintptr_t *args) argument
1063 handle_irq_table_alloc(struct capability *to, int cmd, uintptr_t *args) argument
1073 handle_irq_table_alloc_dest_cap(struct capability *to, int cmd, uintptr_t *args) argument
1080 handle_irq_table_set(struct capability *to, int cmd, uintptr_t *args) argument
1086 handle_irq_table_delete(struct capability *to, int cmd, uintptr_t *args) argument
1092 handle_ipi_notify_send(struct capability *cap, int cmd, uintptr_t *args) argument
1099 kernel_ipi_register(struct capability *cap, int cmd, uintptr_t *args) argument
1108 kernel_ipi_delete(struct capability *cap, int cmd, uintptr_t *args) argument
1116 dispatcher_dump_ptables(struct capability *cap, int cmd, uintptr_t *args) argument
1132 dispatcher_dump_capabilities(struct capability *cap, int cmd, uintptr_t *args) argument
1163 performance_counter_activate(struct capability *cap, int cmd, uintptr_t *args) argument
1200 performance_counter_write(struct capability *cap, int cmd, uintptr_t *args) argument
1213 performance_counter_deactivate(struct capability *cap, int cmd, uintptr_t *args) argument
1223 handle_idcap_identify(struct capability *cap, int cmd, uintptr_t *args) argument
1233 handle_devid_create(struct capability *cap, int cmd, uintptr_t *args) argument
1259 kernel_send_init_ipi(struct capability *cap, int cmd, uintptr_t *args) argument
1272 kernel_send_start_ipi(struct capability *cap, int cmd, uintptr_t *args) argument
1286 kernel_get_global_phys(struct capability *cap, int cmd, uintptr_t *args) argument
1298 kernel_add_kcb(struct capability *kern_cap, int cmd, uintptr_t *args) argument
1307 kernel_remove_kcb(struct capability *kern_cap, int cmd, uintptr_t *args) argument
1317 kernel_suspend_kcb_sched(struct capability *kern_cap, int cmd, uintptr_t *args) argument
1324 handle_kcb_identify(struct capability *to, int cmd, uintptr_t *args) argument
1714 uint64_t cmd = args[0]; local
[all...]
/barrelfish-master/kernel/arch/x86/
H A Dpit.c66 struct lpc_timer_rdbk_cmd_t cmd = { local
70 lpc_timer_rdbk_cmd_wr(&timer, cmd);
H A Dsyscall.c27 struct sysret sys_io(struct capability *to, enum io_cmd cmd, argument
37 debug(SUBSYS_IO, "handle_io: IO cmd 0x%x to port 0x%" PRIx16 "\n", cmd, port);
38 switch(cmd) {
/barrelfish-master/usr/eclipseclp/JavaInterface/src/com/parctechnologies/eclipse/
H A DOutOfProcessEclipse.java214 int cmd = 0;
231 cmdarray[cmd++] = (new File(executableSubdir, "eclipse")).toString();
240 cmdarray[cmd++] = (new File(librarySubdir, "eclipse.exe")).toString();
242 cmdarray[cmd++] = "-D";
243 cmdarray[cmd++] = eclipseDir.toString();
250 cmdarray[cmd++] = "-l";
251 cmdarray[cmd++] = (new Integer(options.getLocalSize()).toString())+"M";
258 cmdarray[cmd++] = "-g";
259 cmdarray[cmd++] = (new Integer(options.getGlobalSize()).toString())+"M";
262 cmdarray[cmd
[all...]
/barrelfish-master/lib/openssl-1.0.0d/test/
H A Dpkits-test.pl814 my $cmd = $ossl_cmd;
815 $cmd .= "-in $pkitsdir/$filename -policy anyPolicy";
816 my $cmdout = `$cmd`;
856 my $cmd = $ossl_cmd;
857 $cmd .= "-in $pkitsdir/$filename $exargs -policy_print";
858 @oparr = `$cmd`;
/barrelfish-master/usr/eclipseclp/lib_tcl/widget/
H A Dventry.tcl195 set cmd [substitute $w $data(-vcmd) $str $new $index $type]
197 set code [catch {uplevel \#0 $cmd} result]
223 set cmd [substitute $w $data(-invalidcmd) \
225 if {[catch {uplevel \#0 $cmd} result]} {
241 ;proc substitute {w cmd change newstr index type} {
244 set old $cmd
245 set i [string first % $cmd]
247 set new [string range $cmd 0 [incr i -1]]
249 set c [string index $cmd [incr i 2]]
261 set cmd [strin
[all...]
/barrelfish-master/lib/multiboot/
H A Dgrubmenu.c131 char cmd[MAXBUF+1]; local
132 while((len= read_token(infile, cmd)) > 0) {
133 if(!strcmp(cmd, "title")) {
140 else if(!strcmp(cmd, "kernel")) {
153 else if(!strcmp(cmd, "image")) {
161 else if(!strncmp(cmd, "module", 6)) {
186 else if(!strcmp(cmd, "mmap")) {
242 else if(!strcmp(cmd, "timeout")) {
256 else if(!strcmp(cmd, "bootdriver")) {
263 else if(!strcmp(cmd, "cpudrive
[all...]
/barrelfish-master/tools/arm_molly/
H A Dbuild_multiboot.c77 char cmd[1024], args[1024], image[1024]; local
81 cmd[0] = args[0] = image[0] = line[0] = '\0';
88 sscanf(line, "%s %s %[^\n]", cmd, image, args);
90 if(!strcmp(cmd, "kernel")) {
96 } else if(!strcmp(cmd, "module") || !strcmp(cmd, "modulenounzip")) {
104 } else if(!strcmp(cmd, "mmap")) {
130 for(int i = 0; i < strlen(cmd); i++) {
131 if(cmd[i] == '#') {
134 if(!isspace(cmd[
[all...]
/barrelfish-master/lib/libc/gen/
H A Dsetmode.c62 char cmd; member in struct:bitcmd
95 switch(set->cmd) {
217 set->cmd = 0;
327 set->cmd = 0;
379 set->cmd = '-';
388 set->cmd = op;
395 set->cmd = op;
421 for (; set->cmd; ++set)
422 (void)printf("cmd: '%c' bits %04o%s%s%s%s%s%s\n",
423 set->cmd, se
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/evp/
H A Dbio_enc.c69 static long enc_ctrl(BIO *h, int cmd, long arg1, void *arg2);
72 static long enc_callback_ctrl(BIO *h, int cmd, bio_info_cb *fps);
286 static long enc_ctrl(BIO *b, int cmd, long num, void *ptr) argument
296 switch (cmd)
303 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
309 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
314 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
319 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
346 ret=BIO_ctrl(b->next_bio,cmd,num,ptr);
353 ret=BIO_ctrl(b->next_bio,cmd,nu
376 enc_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) argument
[all...]

Completed in 224 milliseconds

1234567891011