Home
last modified time | relevance | path

Searched refs:sopt (Results 1 – 22 of 22) sorted by relevance

/third_party/node/test/parallel/
Dtest-https-truncate.js41 const sopt = { key, cert };
43 const server = https.createServer(sopt, function(req, res) {
/third_party/ntfs-3g/src/
Dntfs-3g.probe.c92 static const char *sopt = "-hrw"; in parse_options() local
103 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfs-3g_common.c600 static const char *sopt = "-o:hnsvV"; in ntfs_parse_options() local
612 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in ntfs_parse_options()
/third_party/ntfs-3g/ntfsprogs/
Dntfscat.c162 static const char *sopt = "-a:fh?i:n:qVvr"; in parse_options() local
190 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfslabel.c123 static const char *sopt = "-fh?IinqvV"; in parse_options() local
145 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfscluster.c113 static const char *sopt = "-c:F:fh?I:ilqs:vV"; in parse_options() local
142 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfsls.c194 static const char *sopt = "-aFfh?ilp:qRsVvx"; in parse_options() local
224 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfsmove.c110 static const char *sopt = "-BC:DEfh?nqSVv"; in parse_options() local
135 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfscmp.c187 static const char *sopt = "-dhPv"; in parse_options() local
203 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfscp.c152 static const char *sopt = "-a:ifh?mN:no:qtVv"; in parse_options() local
186 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfsdecrypt.c195 static const char *sopt = "-fh?ei:k:qVv"; in parse_options() local
217 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfsfix.c169 static const char *sopt = "-bdhnV"; in parse_options() local
181 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfswipe.c269 static const char *sopt = "-ab:c:dfh?ilmnpqtuUvVs"; in parse_options() local
304 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfsundelete.c606 static const char *sopt = "-b:Cc:d:fh?i:m:o:OPp:sS:t:TuqvV"; in parse_options() local
645 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfsinfo.c162 static const char *sopt = "-:dfhi:F:mqtTvV"; in parse_options() local
187 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfsclone.c403 static const char *sopt = "-dfhmno:O:qrstV"; local
431 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) {
Dntfsresize.c481 static const char *sopt = "-bcdfhimnPs:vVx"; in parse_options() local
509 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
Dntfsrecover.c4147 static const char *sopt = "-bc:hifknp:r:stu:vVx:"; in getoptions() local
4184 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in getoptions()
Dmkntfs.c596 static const char *sopt = "-c:CfFhH:IlL:np:qQs:S:TUvVz:"; in mkntfs_parse_options() local
636 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in mkntfs_parse_options()
Dntfssecaudit.c6126 static const char *sopt = "-abehHrstuvV"; in parse_options() local
6157 while ((c = getopt_long(argc, argv, sopt, lopt, NULL)) != -1) { in parse_options()
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_usrreq.c7753 sctp_ctloutput(struct socket *so, struct sockopt *sopt) argument
7765 if ((sopt->sopt_level == SOL_SOCKET) &&
7766 (sopt->sopt_name == SO_SETFIB)) {
7778 if (sopt->sopt_level != IPPROTO_SCTP) {
7782 error = ip6_ctloutput(so, sopt);
7788 error = ip_ctloutput(so, sopt);
7792 optsize = sopt->sopt_valsize;
7803 error = sooptcopyin(sopt, optval, optsize, optsize);
7810 p = (void *)sopt->sopt_td;
7812 p = (void *)sopt->sopt_p;
[all …]
/third_party/python/Lib/
Doptparse.py353 short_opts = [self._short_opt_fmt % (sopt, metavar)
354 for sopt in option._short_opts]