Home
last modified time | relevance | path

Searched refs:DESC (Results 1 – 25 of 29) sorted by relevance

12

/titanic_41/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1_encode.h477 #define MAKE_ENCFN(FNAME,DESC) \ argument
479 const aux_typedefname_##DESC *val, \
483 &krb5int_asn1type_##DESC, \
606 #define FIELDOF_OPTSTRINGL(STYPE,DESC,PTRFIELD,LENDESC,LENFIELD,TAG,OPT) \ argument
609 OFFOF(STYPE, PTRFIELD, aux_typedefname_##DESC), \
611 TAG, OPT, &krb5int_asn1type_##DESC, &krb5int_asn1type_##LENDESC \
613 #define FIELDOF_OPTSTRING(STYPE,DESC,PTRFIELD,LENFIELD,TAG,OPT) \ argument
614 FIELDOF_OPTSTRINGL(STYPE,DESC,PTRFIELD,uint,LENFIELD,TAG,OPT)
615 #define FIELDOF_STRINGL(STYPE,DESC,PTRFIELD,LENDESC,LENFIELD,TAG) \ argument
616 FIELDOF_OPTSTRINGL(STYPE,DESC,PTRFIELD,LENDESC,LENFIELD,TAG,-1)
[all …]
/titanic_41/usr/src/cmd/ldap/ns_ldap/
H A Didsconfig.sh3619 objectclasses: ( 1.3.6.1.1.1.2.7 NAME 'ipNetwork' DESC 'Standard LDAP objectclass' SUP top STRUCTUR…
4133 attributetypes: ( 1.3.6.1.1.1.1.28 NAME 'nisPublickey' DESC 'NIS public key' SYNTAX 1.3.6.1.4.1.146…
4134 attributetypes: ( 1.3.6.1.1.1.1.29 NAME 'nisSecretkey' DESC 'NIS secret key' SYNTAX 1.3.6.1.4.1.146…
4135 attributetypes: ( 1.3.6.1.1.1.1.30 NAME 'nisDomain' DESC 'NIS domain' SYNTAX 1.3.6.1.4.1.1466.115.1…
4136 attributetypes: ( 1.3.6.1.1.1.1.31 NAME 'automountMapName' DESC 'automount Map Name' EQUALITY caseE…
4137 attributetypes: ( 1.3.6.1.1.1.1.32 NAME 'automountKey' DESC 'automount Key Value' EQUALITY caseExac…
4138 attributetypes: ( 1.3.6.1.1.1.1.33 NAME 'automountInformation' DESC 'automount information' EQUALIT…
4174 attributetypes: ( 1.3.6.1.4.1.11.1.3.1.1.0 NAME 'defaultServerList' DESC 'Default LDAP server host …
4175 attributetypes: ( 1.3.6.1.4.1.11.1.3.1.1.1 NAME 'defaultSearchBase' DESC 'Default LDAP base DN used…
4176 attributetypes: ( 1.3.6.1.4.1.11.1.3.1.1.2 NAME 'preferredServerList' DESC 'Preferred LDAP server h…
[all …]
/titanic_41/usr/src/lib/libsqlite/test/
H A Dsort.test59 execsql {SELECT n FROM t1 ORDER BY n DESC}
68 execsql {SELECT n FROM t1 ORDER BY v DESC}
74 execsql {SELECT flt FROM t1 ORDER BY flt DESC}
92 execsql {SELECT n FROM t1 ORDER BY log, flt DESC}
95 execsql {SELECT n FROM t1 ORDER BY log ASC, flt DESC}
98 execsql {SELECT n FROM t1 ORDER BY log DESC, flt}
101 execsql {SELECT n FROM t1 ORDER BY log DESC, flt DESC}
129 SELECT v FROM t1 ORDER BY substr(v,2,999) DESC;
134 SELECT v FROM t1 ORDER BY substr(v,2,999)+0.0 DESC;
153 SELECT a, b FROM t2 ORDER BY a DESC;
[all …]
H A Dwhere.test438 SELECT * FROM t3 WHERE a=1 AND c>0 ORDER BY a DESC LIMIT 3
443 SELECT * FROM t3 WHERE a=1 AND c>0 ORDER BY a DESC, c DESC LIMIT 3
448 SELECT * FROM t3 WHERE a=1 AND c>0 ORDER BY c DESC LIMIT 3
458 SELECT * FROM t3 WHERE a=1 AND c>0 ORDER BY a DESC, c ASC LIMIT 3
463 SELECT * FROM t3 WHERE a=1 AND c>0 ORDER BY a ASC, c DESC LIMIT 3
483 SELECT * FROM t3 WHERE a>0 ORDER BY a DESC LIMIT 3
531 SELECT w FROM t1 WHERE x=3 ORDER BY y DESC;
541 SELECT w FROM t1 WHERE x=3 AND y>100 ORDER BY y DESC LIMIT 3;
546 SELECT w FROM t1 WHERE x=3 AND y>121 ORDER BY y DESC;
551 SELECT w FROM t1 WHERE x=3 AND y>=121 ORDER BY y DESC;
[all …]
H A Drowid.test188 set r2 [execsql {SELECT _rowid_, rowid FROM t2 ORDER BY x DESC}]
521 execsql {SELECT rowid, a FROM t5 WHERE rowid>=5.5 ORDER BY rowid DESC}
524 execsql {SELECT rowid, a FROM t5 WHERE rowid>=5.0 ORDER BY rowid DESC}
527 execsql {SELECT rowid, a FROM t5 WHERE rowid>5.5 ORDER BY rowid DESC}
530 execsql {SELECT rowid, a FROM t5 WHERE rowid>5.0 ORDER BY rowid DESC}
533 execsql {SELECT rowid, a FROM t5 WHERE 5.5<=rowid ORDER BY rowid DESC}
536 execsql {SELECT rowid, a FROM t5 WHERE 5.5<rowid ORDER BY rowid DESC}
539 execsql {SELECT rowid, a FROM t5 WHERE rowid<=5.5 ORDER BY rowid DESC}
542 execsql {SELECT rowid, a FROM t5 WHERE rowid<5.5 ORDER BY rowid DESC}
545 execsql {SELECT rowid, a FROM t5 WHERE 5.5>=rowid ORDER BY rowid DESC}
[all …]
H A Dsubselect.test92 SELECT (SELECT a FROM t1 ORDER BY a), (SELECT a FROM t1 ORDER BY a DESC)
102 SELECT 2 IN (SELECT a FROM t1 ORDER BY a DESC);
122 SELECT sum(x) FROM (SELECT x FROM t3 ORDER BY x DESC LIMIT 2);
132 SELECT (SELECT x FROM t3 ORDER BY x DESC);
142 SELECT (SELECT x FROM t3 ORDER BY x DESC LIMIT 1);
152 SELECT (SELECT x FROM t3 ORDER BY x DESC LIMIT 1 OFFSET 2);
H A Dformat3.test69 execsql {SELECT n FROM t1 ORDER BY n DESC}
78 execsql {SELECT n FROM t1 ORDER BY v DESC}
84 execsql {SELECT flt FROM t1 ORDER BY flt DESC}
102 execsql {SELECT n FROM t1 ORDER BY log, flt DESC}
105 execsql {SELECT n FROM t1 ORDER BY log ASC, flt DESC}
108 execsql {SELECT n FROM t1 ORDER BY log DESC, flt}
111 execsql {SELECT n FROM t1 ORDER BY log DESC, flt DESC}
139 SELECT v FROM t1 ORDER BY substr(v,2,999) DESC;
144 SELECT v FROM t1 ORDER BY substr(v,2,999)+0.0 DESC;
163 SELECT a, b FROM t2 ORDER BY a DESC;
[all …]
H A Dlimit.test129 SELECT x FROM t4 ORDER BY y DESC LIMIT 1 OFFSET 999;
145 ORDER BY x DESC LIMIT 2;
152 INSERT INTO t5 SELECT x-y, x+y FROM t1 WHERE x ORDER BY x DESC LIMIT 31;
158 SELECT * FROM t5 ORDER BY x DESC, y DESC LIMIT 2;
265 SELECT x FROM t2 UNION SELECT x+2 FROM t2 ORDER BY 1 DESC LIMIT 2 OFFSET 1;
275 SELECT a+9 FROM t6 EXCEPT SELECT y FROM t2 ORDER BY 1 DESC LIMIT 2;
296 ORDER BY 1 DESC LIMIT 1 OFFSET 1;
H A Dselect3.test191 SELECT log, min(n) FROM t1 GROUP BY log ORDER BY log DESC;
201 SELECT log, min(n) FROM t1 GROUP BY log ORDER BY 1 DESC;
212 SELECT log, min(n) FROM t1 GROUP BY log ORDER BY log DESC;
222 SELECT log, min(n) FROM t1 GROUP BY log ORDER BY 1 DESC;
H A Dmisc3.test160 SELECT * FROM t2 WHERE a>=0 AND a<2147483649 ORDER BY a DESC;
165 SELECT * FROM t2 WHERE a>=0 AND a<=2147483648 ORDER BY a DESC;
170 SELECT * FROM t2 WHERE a>=0 AND a<2147483648 ORDER BY a DESC;
175 SELECT * FROM t2 WHERE a>=0 AND a<=2147483647 ORDER BY a DESC;
180 SELECT * FROM t2 WHERE a>=0 AND a<2147483647 ORDER BY a DESC;
H A Dselect4.test74 ORDER BY log DESC;
169 ORDER BY log DESC;
227 ORDER BY log DESC;
343 ORDER BY 1, 2 DESC;
H A Dtableapi.test90 SELECT * FROM xyz WHERE a IN (42,50,52) ORDER BY a DESC
147 SELECT * FROM xyz WHERE a IN (42,50,52) ORDER BY a DESC
H A Dmemdb.test316 SELECT a FROM t2 ORDER BY c DESC;
346 SELECT * FROM t5 ORDER BY y DESC;
H A Dselect1.test323 SELECT * FROM t5 ORDER BY 2, 1 DESC;
328 SELECT * FROM t5 ORDER BY 1 DESC, b;
333 SELECT * FROM t5 ORDER BY b DESC, 1;
H A Dfunc.test266 CREATE TEMP TABLE t3 AS SELECT a FROM t2 ORDER BY a DESC;
H A Dview.test375 SELECT * FROM v9 ORDER BY 1 DESC;
/titanic_41/usr/src/uts/common/io/mii/
H A Dmii_other.c65 #define ID(MFG, MODEL, DESC) \ argument
66 { MII_OUI_##MFG, MII_MODEL_##MFG##_##MODEL, DESC }
67 #define IDN(MFG, N, MODEL, DESC) \ argument
68 { MII_OUI_##MFG##_##N, MII_MODEL_##MFG##_##MODEL, DESC }
/titanic_41/usr/src/cmd/print/scripts/
H A Dconv_lp78 DESC=""
82 DESC=`cat ${PRINTER}/comment`
97 lpset -n system -a "bsdaddr=${RHOST},${RNAME}" -a "description=${DESC}" \
/titanic_41/usr/src/cmd/troff/troff.d/
H A Dmaketables58 MAKEDESC=no # need to remake the DESC.out file
60 FONTS=`grep "^fonts" DESC | sed s/"fonts[ \t][0-9][0-9]*"//gp`
78 DESC) MAKEDESC=yes;;
83 $MAKEDEV DESC
H A DREADME60 The file "DESC" contains information about the
61 device itself and the character set. (See devaps/DESC.)
70 these wind up in DESC.out (which includes
/titanic_41/usr/src/lib/fm/libfmd_msg/common/
H A Dfmd_msg_test.out36 DESC: This entry tests URL variable expansion - url = http://illumos.org/msg/TEST-8000-08
52 DESC: This entry tests URL variable expansion - url = http://illumos.org/msg/TEST-8000-08
61 DESC: This entry tests URL variable expansion - url = http://foo.bar.com/TEST-8000-08
77 DESC: This entry tests URL variable expansion - url = http://illumos.org/msg/TEST-8000-08
93 DESC: This entry tests URL variable expansion - url = http://illumos.org/msg/TEST-8000-08
102 DESC: This entry tests URL variable expansion - url = http://foo.bar.com/TEST-8000-08
/titanic_41/usr/src/cmd/fm/eversholt/esc/
H A DMakefile.com39 CFLAGS += -DESC $(CTF_FLAGS)
/titanic_41/usr/src/cmd/lp/filter/postscript/font/devpost/
H A DMakefile39 DESCFILE = DESC
/titanic_41/usr/src/cmd/sgs/packages/common/
H A Dpkginfo.tmpl39 DESC="OS-Net Static/Dynamic linker package"
/titanic_41/usr/src/cmd/lp/filter/postscript/font/
H A DREADME81 the charset portion of file devpost/DESC.
124 ../makedev DESC ? ??

12