Searched refs:which (Results 1 - 25 of 462) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/ipfilter/lib/
H A Dgetnattype.c26 char *which; local
34 which = "MAP";
37 which = "MAP-BLOCK";
40 which = "RDR";
43 which = "RWR-MAP";
46 which = "RWR-RDR";
49 which = "BIMAP";
52 which = "DIV-RDR";
55 which = "DIV-MAP";
58 which
[all...]
/freebsd-10.0-release/usr.bin/which/
H A DMakefile4 PROG= which
/freebsd-10.0-release/contrib/ntp/sntp/
H A Dsocket.c117 void open_socket (int which, char *hostname, int timespan) { argument
132 if (which < 0 || which >= MAX_SOCKETS || descriptors[which] >= 0)
148 memset(&here[which], 0, sizeof(struct sockaddr_storage));
149 here[which] = anywhere;
151 ((struct sockaddr_in6 *)&here[which])->sin6_port = 0;
152 memset(&there[which], 0, sizeof(struct sockaddr_storage));
153 there[which] = address;
156 display_sock_in_hex(&here[which]);
185 open_socket(int which, char *hostname, int timespan) argument
244 write_socket(int which, void *packet, int length) argument
274 read_socket(int which, void *packet, int length, int waiting) argument
328 flush_socket(int which) argument
374 close_socket(int which) argument
[all...]
H A Dheader.h69 extern void open_socket (int which, char *hostnames, int timespan);
71 extern void write_socket (int which, void *packet, int length);
73 extern int read_socket (int which, void *packet, int length, int waiting);
75 extern int flush_socket (int which);
77 extern void close_socket (int which);
/freebsd-10.0-release/contrib/top/
H A DMake.desc.X3 # This makefile is the prototype for "Make.desc", which is used by
/freebsd-10.0-release/sys/boot/ia64/ski/
H A Dssc.c41 ssc(u_int64_t in0, u_int64_t in1, u_int64_t in2, u_int64_t in3, int which) argument
50 : "r"(which), "r"(in0), "r"(in1), "r"(in2), "r"(in3));
H A Dlibski.h65 int which);
/freebsd-10.0-release/contrib/libstdc++/libsupc++/
H A Deh_alloc.cc111 unsigned int which = 0; local
118 if (++which >= EMERGENCY_OBJ_COUNT)
122 emergency_used |= (bitmask_type)1 << which;
123 ret = &emergency_buffer[which][0];
150 const unsigned int which local
154 emergency_used &= ~((bitmask_type)1 << which);
/freebsd-10.0-release/usr.bin/renice/
H A Drenice.c63 * or groups of processes which are already
70 int errs, incr, prio, which, who; local
74 which = PRIO_PROCESS;
90 which = PRIO_PGRP;
94 which = PRIO_USER;
98 which = PRIO_PROCESS;
101 if (which == PRIO_USER) {
123 errs += donice(which, who, prio, incr);
129 donice(int which, int who, int prio, int incr) argument
134 oldprio = getpriority(which, wh
[all...]
/freebsd-10.0-release/contrib/atf/atf-run/
H A Dmisc_helpers.cpp376 std::string which = atf::env::get("TESTCASE"); local
379 if (which == "pass")
381 if (which == "config")
383 if (which == "fds")
385 if (which == "mux_streams")
387 if (which == "testvar")
389 if (which == "env_list")
391 if (which == "env_home")
393 if (which == "read_stdin")
395 if (which
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dcore-regset.c51 CORE_REG_SECT points to an array of bytes, which are the contents
52 of a `note' from a core file which BFD thinks might contain
55 WHICH says which register set corelow suspects this is:
62 fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which, argument
68 switch (which)
/freebsd-10.0-release/tools/regression/pjdfstest/tests/truncate/
H A D11.t15 cp -pf `which sleep` ${n0}
/freebsd-10.0-release/usr.sbin/pw/
H A Dpw.c90 static void cmdhelp(int mode, int which);
98 int which = -1; local
156 else if (which == -1 && (tmp = getindex(Which, argv[1])) != -1)
157 which = tmp;
158 else if ((mode == -1 && which == -1) &&
161 which = tmp / M_NUM;
164 cmdhelp(mode, which);
165 else if (which != -1 && mode != -1)
176 if (mode == -1 || which == -1)
177 cmdhelp(mode, which);
281 cmdhelp(int mode, int which) argument
[all...]
H A Dpw_log.c39 pw_log(struct userconf * cnf, int mode, int which, char const * fmt,...) argument
59 sprintf(nfmt + strlen(nfmt), "[%s:%s%s] %s\n", name, Which[which], Modes[mode], fmt);
/freebsd-10.0-release/contrib/libreadline/
H A Dhistory.c119 /* Begin a session in which the history functions might be used. This
141 /* Returns the magic number which says what history element we are
198 /* Return the history entry which is logically at OFFSET in the history array.
368 replace_history_entry (which, line, data)
369 int which;
375 if (which < 0 || which >= history_length)
379 old_value = the_history[which];
384 the_history[which] = temp;
390 NEW. WHICH says which on
[all...]
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_rb.c225 * Swap the location and colors of 'self' and its child @ which. The child
234 struct archive_rb_node *old_father, const unsigned int which)
236 const unsigned int other = which ^ RB_DIR_OTHER;
238 struct archive_rb_node * const old_child = old_father->rb_nodes[which];
248 new_child->rb_nodes[which] = old_child->rb_nodes[other];
267 if (!RB_SENTINEL_P(new_child->rb_nodes[which])) {
268 RB_SET_FATHER(new_child->rb_nodes[which], new_child);
269 RB_SET_POSITION(new_child->rb_nodes[which], which);
282 unsigned int which;
231 __archive_rb_tree_reparent_nodes( struct archive_rb_node *old_father, const unsigned int which) argument
279 unsigned int which; local
351 const unsigned int which = RB_POSITION(self); local
474 __archive_rb_tree_prune_blackred_branch( struct archive_rb_node *self, unsigned int which) argument
496 unsigned int which; local
549 __archive_rb_tree_removal_rebalance(struct archive_rb_tree *rbt, struct archive_rb_node *parent, unsigned int which) argument
[all...]
/freebsd-10.0-release/contrib/libpcap/tests/
H A Dfindalldevstest.c124 static short which; local
128 which = (which + 1 == IPTOSBUFFERS ? 0 : which + 1);
129 sprintf(output[which], "%d.%d.%d.%d", p[0], p[1], p[2], p[3]);
130 return output[which];
/freebsd-10.0-release/usr.bin/cpuset/
H A Dcpuset.c62 static cpuwhich_t which; variable
172 if (cpuset_getaffinity(level, which, id, sizeof(mask), &mask) != 0)
174 printf("%s %jd%s mask: ", whichnames[which], (intmax_t)id,
190 if (cpuset_getid(level, which, id, &setid))
192 printf("%s %jd%s id: %d\n", whichnames[which], (intmax_t)id,
207 which = CPU_WHICH_PID;
228 which = CPU_WHICH_JAIL;
237 which = CPU_WHICH_PID;
248 which = CPU_WHICH_CPUSET;
253 which
[all...]
/freebsd-10.0-release/tools/regression/pjdfstest/tests/open/
H A D20.t15 cp -pf `which sleep` ${n0}
/freebsd-10.0-release/contrib/libreadline/examples/
H A Dhistexamp.c106 int which; local
107 if ((sscanf (line + 6, "%d", &which)) == 1)
109 HIST_ENTRY *entry = remove_history (which);
111 fprintf (stderr, "No such entry %d\n", which);
/freebsd-10.0-release/usr.bin/tr/
H A Dextern.h39 enum { STRING1, STRING2 } which; member in struct:__anon11494
/freebsd-10.0-release/contrib/dialog/
H A Dbuildlist.c407 * This is an alternate interface to 'buildlist' which allows the application
639 int which = (items[cur_item].state != 0); local
640 MY_DATA *moi = data + which;
641 int at_top = index2row(&all, moi->top_index, which);
642 int at_end = index2row(&all, -1, which);
643 int at_bot = skip_rows(&all, at_top, all.use_height, which);
649 which);
658 int cur_row = index2row(&all, cur_item, which);
659 cur_y = (data[which].box_y
664 cur_x = (data[which]
[all...]
/freebsd-10.0-release/sys/dev/drm/
H A Dmga_warp.c42 #define WARP_UCODE_SIZE( which ) \
43 ((sizeof(which) / MGA_WARP_CODE_ALIGN + 1) * MGA_WARP_CODE_ALIGN)
45 #define WARP_UCODE_INSTALL( which, where ) \
49 memcpy( vcbase, which, sizeof(which) ); \
50 pcbase += WARP_UCODE_SIZE( which ); \
51 vcbase += WARP_UCODE_SIZE( which ); \
/freebsd-10.0-release/sys/arm/xscale/pxa/
H A Dpxa_timer.c221 pxa_timer_get_osmr(int which) argument
225 timer_softc->pt_bsh, which * 0x4));
229 pxa_timer_set_osmr(int which, uint32_t val) argument
233 timer_softc->pt_bsh, which * 0x4, val);
285 pxa_timer_interrupt_enable(int which) argument
289 if (which == -1) {
297 oier |= 1 << which;
303 pxa_timer_interrupt_disable(int which) argument
307 if (which == -1) {
314 oier &= ~(1 << which);
[all...]
/freebsd-10.0-release/sys/boot/common/
H A Dgpt.c51 * Buffer below 64kB passed on gptread(), which can hold at least
57 gptupdate(const char *which, struct dsk *dskp, struct gpt_hdr *hdr, argument
78 BOOTPROG, which);
87 printf("%s: unable to update %s GPT header\n", BOOTPROG, which);
185 gptread_hdr(const char *which, struct dsk *dskp, struct gpt_hdr *hdr, argument
191 printf("%s: unable to read %s GPT header\n", BOOTPROG, which);
199 printf("%s: invalid %s GPT header\n", BOOTPROG, which);
206 which);
233 gptbootconv(const char *which, struct dsk *dskp, struct gpt_hdr *hdr, argument
265 BOOTPROG, which);
280 gptread_table(const char *which, const uuid_t *uuid, struct dsk *dskp, struct gpt_hdr *hdr, struct gpt_ent *table) argument
[all...]

Completed in 403 milliseconds

1234567891011>>