Home
last modified time | relevance | path

Searched refs:select (Results 1 – 25 of 220) sorted by relevance

123456789

/illumos-gate/usr/src/lib/libsqlite/test/
H A Dlastinsert.test85 select val1 from t2;
92 select val2 from t2;
99 select val3 from t2;
124 select val1 from t2;
131 select val2 from t2;
138 select val3 from t2;
163 select val1 from t2;
170 select val2 from t2;
177 select val3 from t2;
202 select val1 from t2;
[all …]
H A Dnull.test35 select * from t1;
43 select ifnull(a+b,99) from t1;
48 select ifnull(b*c,99) from t1;
113 select a from t1 where b<10
118 select a from t1 where not b>10
123 select a from t1 where b<10 or c=1;
128 select a from t1 where b<10 and c=1;
142 select distinct b from t1 order by b;
151 select b from t1 union select c from t1 order by c;
164 select a from t2;
[all …]
H A Dtrigger4.test30 select * from test1;
35 select * from test2;
43 select * from test1;
48 select * from test2;
60 select * from test1;
65 select * from test2;
73 select * from test1;
78 select * from test2;
102 select * from test1;
109 select * from test1;
[all …]
H A Dlaststmtchanges.test41 select last_statement_change_count();
49 select last_statement_change_count();
57 select count() from t0 where x=8;
98 select v1 from t2;
105 select v2 from t2;
130 select v1 from t2;
137 select v2 from t2;
162 select v1 from t2;
169 select v2 from t2;
234 select n from n1;
[all …]
H A Djoin4_28.test35 select * from t1 left outer join t2 on t1.a=t2.x where t2.z='ok'
40 select * from t1 left outer join t2 on t1.a=t2.x and t2.z='ok'
48 select * from t1 left outer join t2 on t1.a=t2.x where t2.z='ok'
53 select * from t1 left outer join t2 on t1.a=t2.x and t2.z='ok'
58 select * from t1 left outer join t2 on t1.a=t2.x where t2.z>='ok'
63 select * from t1 left outer join t2 on t1.a=t2.x and t2.z>='ok'
68 select * from t1 left outer join t2 on t1.a=t2.x where t2.z IN ('ok')
73 select * from t1 left outer join t2 on t1.a=t2.x and t2.z IN ('ok')
H A Dsort.test230 select a from t3 order by b, a;
235 select a from t3 order by b, a desc;
240 select a from t3 order by b desc, a;
245 select a from t3 order by b desc, a desc;
252 select a from t3 order by b, a;
257 select a from t3 order by b, a desc;
262 select a from t3 order by b desc, a;
267 select a from t3 order by b desc, a desc;
/illumos-gate/usr/src/tools/smatch/src/smatch_data/db/
H A Dcopy_function_pointers.pl14 my ($select, $function, $ptr);
16 $select = $db->prepare('SELECT DISTINCT function, ptr FROM function_ptr WHERE function LIKE "% %";'…
20 $select->execute();
21 while (($function, $ptr) = $select->fetchrow_array()) {
36 my $select = $db->prepare('SELECT distinct file, function FROM function_ptr WHERE ptr = ?;');
39 $select->execute($src);
40 while (my ($file, $function) = $select->fetchrow_array()) {
H A Dremove_mixed_up_pointer_params.pl18 my ($select, $select_type, $remove, $file, $caller, $function, $param, $src_param, $value, $type);
21 $select = $db->prepare('SELECT file, caller, function, parameter, value FROM caller_info WHERE func…
23 $select->execute();
25 while (($file, $caller, $function, $param, $value) = $select->fetchrow_array()) {
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dutil.c1455 ushort_t select = 0; in ld_generic_env() local
1468 select |= SEL_PERMANT; in ld_generic_env()
1470 select |= SEL_REPLACE; in ld_generic_env()
1521 select |= SEL_ACT_RT; in ld_generic_env()
1589 select |= SEL_ACT_RT; in ld_generic_env()
1594 select |= SEL_ACT_RT; in ld_generic_env()
1681 select |= SEL_ACT_RT; in ld_generic_env()
1686 select |= SEL_ACT_RT; in ld_generic_env()
1691 select |= SEL_ACT_RT; in ld_generic_env()
1696 select |= SEL_ACT_RT; in ld_generic_env()
[all …]
/illumos-gate/usr/src/uts/intel/io/intel_nhm/
H A Dintel_nhm.h74 #define MC_COR_ECC_CNT_RD(cpu, select) \ argument
75 nhm_pci_getl(SOCKET_BUS(cpu), 3, 2, 0x80 + ((select) * 4), 0)
78 #define MC_DOD_RD(cpu, channel, select) \ argument
79 nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 1, 0x48 + ((select) * 4), 0)
80 #define MC_SAG_RD(cpu, channel, select) \ argument
81 nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 1, 0x80 + ((select) * 4), 0)
82 #define MC_RIR_LIMIT_RD(cpu, channel, select) \ argument
83 nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 2, 0x40 + ((select) * 4), 0)
84 #define MC_RIR_WAY_RD(cpu, channel, select) \ argument
85 nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 2, 0x80 + ((select) * 4), 0)
/illumos-gate/usr/src/ucblib/libucb/port/gen/
H A Dscandir.c71 int (*select)(struct direct64 *), in scandir64()
98 if (select != NULL && !(*select)(d)) in scandir64()
138 int (*select)(struct direct *), in scandir()
168 if (select != NULL && !(*select)(d)) in scandir()
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dscandir.c73 int (*select)(const struct dirent64 *), in scandir64()
102 if (select != NULL && !(*select)(d)) in scandir64()
158 int (*select)(const struct dirent *), in scandir()
187 if (select != NULL && !(*select)(d)) in scandir()
H A Dselect.c42 #pragma weak _select = select
80 #pragma weak select_large_fdset = select
355 select(int nfds, fd_set *in0, fd_set *out0, fd_set *ex0, struct timeval *tv) in select() function
/illumos-gate/usr/src/cmd/fm/eversholt/files/i386/i86pc/
H A Dgcpu_amd.esc45 * register provides counts of ECC errors seen per channel and chip-select
47 * hc:///motherboard/chip/memory-controller/dram-channel/chip-select
54 * The number of pages that must be faulted on a chip-select for repeated
62 * chip-select (must be at least CS_PAGEFLT_THRESH). If a chip-select
70 * correctable ereports are experienced on a single chip-select within
77 #define CSPATH chip/memory-controller/dram-channel/chip-select
86 * members matches the chip-select path. This is used to constrain
88 * chip-select path of the propogation. This is necessary because the
107 * | includes a chip/memory-controller/dram-channel/chip-select |
119 * | faults on that chip-select from repeated correctable errors. |
[all …]
/illumos-gate/usr/src/cmd/sgs/liblddbg/common/
H A Dversion.c143 Dbg_ver_avail_entry(Lm_list *lml, Ver_index *vip, const char *select) in Dbg_ver_avail_entry() argument
148 if (select) { in Dbg_ver_avail_entry()
151 vip->vi_name, select); in Dbg_ver_avail_entry()
154 vip->vi_name, select); in Dbg_ver_avail_entry()
/illumos-gate/usr/src/cmd/zic/
H A Dtzselect.po16 msgid "Please select a continent or ocean."
31 msgid "Please select a country or region."
33 msgid "Please select one of the following time zone regions."
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/talk/
H A Dctl_transact.c103 while ((nready = select(32, (fd_set *)&read_mask,
138 nready = select(32, (fd_set *)&read_mask, 0, 0, &wait);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Ddisp_major_status.c45 #define GSS_ERROR_STR(value, array, select, min, max, num) \ argument
46 (((select(value) < (min)) || (select(value) > (max))) ? NULL : \
/illumos-gate/usr/src/uts/common/sys/
H A Dpm.h124 int select; /* Selects the component or dependent */ member
201 int select; /* Selects the component or dependent */ member
/illumos-gate/usr/src/uts/common/io/
H A Dpcic.c2736 int select; in pcic_set_window() local
3083 PCIC_CARDMEM_0_LOW + select, in pcic_set_window()
3087 PCIC_CARDMEM_0_HI + select, in pcic_set_window()
3095 select = pcic_getb(pcic, socket, in pcic_set_window()
3097 select |= SYSMEM_WINDOW(win); in pcic_set_window()
3117 select &= ~SYSMEM_WINDOW(win); in pcic_set_window()
3288 select = win * PCIC_IO_OFFSET; in pcic_set_window()
3295 win, select, in pcic_set_window()
3438 which, select, in pcic_set_window()
3469 select = win * PCIC_IO_OFFSET; in pcic_set_window()
[all …]
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dparse.y100 create_table_args ::= AS select(S). { in select() function
272 cmd ::= CREATE(X) temp(T) VIEW nm(Y) AS select(S). {
281 cmd ::= select(X). {
286 %type select {Select*}
287 %destructor select {sqliteSelectDelete($$);}
291 select(A) ::= oneselect(X). {A = X;}
292 select(A) ::= select(X) multiselect_op(Y) oneselect(Z). {
402 seltablist_paren(A) ::= select(S). {A = S;}
639 expr(A) ::= LP(B) select(X) RP(E). {
664 expr(A) ::= expr(X) IN LP select(Y) RP(E). {
[all …]
/illumos-gate/usr/src/uts/i86pc/ml/
H A Dcpr_wakecode.S408 / select COM1
421 D16 movl $_CONST(COM1+LCR), %edx / select COM1
425 D16 movl $_CONST(COM1+MCR), %edx / select COM1
429 / select COM2
442 D16 movl $_CONST(COM2+LCR), %edx / select COM1
446 D16 movl $_CONST(COM2+MCR), %edx / select COM1
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/fun/
H A Ddirs20 select i in "$dir" "${_push_stack[@]}"
103 select dir in "$dir" "${_push_stack[@]}"
/illumos-gate/usr/src/test/util-tests/tests/awk/gnu/
H A Dgetlnhd.ok1 select * from user
/illumos-gate/usr/src/compat/bhyve/sys/
H A Dselect.h21 #include_next <sys/select.h>

123456789