Symbol: getopt_long
headers/posix/getopt.h
32
extern int getopt_long(int argc, char * const *argv, const char *shortOptions,
src/apps/debugger/Debugger.cpp
153
int c = getopt_long(argc, (char**)argv, "+chs", sLongOptions, NULL);
src/apps/pulse/PulseApp.cpp
60
int c = getopt_long(argc, argv, "hw:", long_options, &option_index);
src/apps/softwareupdater/SoftwareUpdaterApp.cpp
100
while ((c = getopt_long(argc, argv, "hv", kLongOptions, NULL)) != -1) {
src/bin/addattr/main.cpp
170
while ((c = getopt_long(argc, argv, "hf:t:c:P", kLongOptions, NULL)) != -1) {
src/bin/catattr.cpp
324
while ((option = getopt_long(argc, argv, "rdPh", kLongOptions, NULL))
src/bin/cddb_lookup/cddb_lookup.cpp
370
while ((c = getopt_long(argc, argv, "i:s:vdh", kLongOptions, NULL)) != -1) {
src/bin/checkfs.cpp
50
int nextOption = getopt_long(argc, argv, kShortOptions, kLongOptions,
src/bin/clipboard.cpp
80
while ((c = getopt_long(argc, argv, "l:s:o:c:ripdh", kLongOptions, NULL))
src/bin/debug/profile/profile.cpp
1035
int c = getopt_long(argc, (char**)argv, "+acCfhi:klo:rs:Sv:",
src/bin/debug/scheduling_recorder/scheduling_recorder.cpp
328
int c = getopt_long(argc, (char**)argv, "+hlr", sLongOptions, NULL);
src/bin/debug/time_stats/time_stats.cpp
64
int c = getopt_long(argc, (char**)argv, "+b:ho:s", sLongOptions, NULL);
src/bin/diskimage.cpp
206
int c = getopt_long(argc, (char**)argv, "+h", sLongOptions, NULL);
src/bin/findpaths.cpp
167
int c = getopt_long(argc, (char**)argv, "+a:c:d:ehlp:r:R",
src/bin/fstrim.cpp
164
while ((c = getopt_long(argc, argv, "ho:l:fv", kLongOptions, NULL)) != -1) {
src/bin/getarch.cpp
114
int c = getopt_long(argc, (char**)argv, "+hps",
src/bin/i2c/i2c.cpp
84
while ((c = getopt_long(argc, argv, "h", kLongOptions, NULL)) != -1) {
src/bin/id.c
208
while ((argOption = getopt_long(argc, optargv, "gGnru", options, &indexptr)) != -1) {
src/bin/keymap/main.cpp
112
while ((c = getopt_long(argc, argv, "o:dblsrchH", kLongOptions,
src/bin/launch_roster.cpp
104
while ((c = getopt_long(argCount, args, "hruse:l:", kLogLongOptions, NULL))
src/bin/launch_roster.cpp
378
while ((c = getopt_long(argc, argv, "+hv", kLongOptions, NULL)) != -1) {
src/bin/listfont.cpp
56
while ((c = getopt_long(argc, argv, "sltuh", kLongOptions, NULL)) != -1) {
src/bin/locale/locale.cpp
119
while ((c = getopt_long(argc, argv, "lcfmath", longopts, NULL)) != -1) {
src/bin/mimeset.cpp
163
int c = getopt_long(argc, (char**)argv, "aAfFhm:", sLongOptions,
src/bin/mkfs/main.cpp
98
int nextOption = getopt_long(argc, argv, kShortOptions, kLongOptions,
src/bin/mkindex.cpp
108
while ((c = getopt_long(argc, argv, "d:ht:v", kLongOptions, NULL)) != -1) {
src/bin/multiuser/groupadd.cpp
53
int c = getopt_long(argc, (char**)argv, "h", sLongOptions, NULL);
src/bin/multiuser/groupdel.cpp
51
int c = getopt_long(argc, (char**)argv, "h", sLongOptions, NULL);
src/bin/multiuser/groupmod.cpp
67
int c = getopt_long(argc, (char**)argv, "A:hR:", sLongOptions, NULL);
src/bin/multiuser/passwd.cpp
63
int c = getopt_long(argc, (char**)argv, "dh", sLongOptions, NULL);
src/bin/multiuser/useradd.cpp
84
int c = getopt_long(argc, (char**)argv, "d:e:f:g:hn:s:", sLongOptions,
src/bin/multiuser/userdel.cpp
51
int c = getopt_long(argc, (char**)argv, "h", sLongOptions, NULL);
src/bin/mvattr.cpp
166
while ((c = getopt_long(argc, argv, "hfxPv", kLongOptions, NULL)) != -1) {
src/bin/network/netstat/netstat.cpp
153
opt = getopt_long(argc, argv, "hn46xtul", kLongOptions,
src/bin/package/command_add.cpp
49
int c = getopt_long(argc, (char**)argv, "+0123456789C:fhi:qv",
src/bin/package/command_checksum.cpp
95
int c = getopt_long(argc, (char**)argv, "+hqv",
src/bin/package/command_create.cpp
54
int c = getopt_long(argc, (char**)argv, "+b0123456789C:hi:I:z:qv",
src/bin/package/command_dump.cpp
163
int c = getopt_long(argc, (char**)argv, "+h", sLongOptions, NULL);
src/bin/package/command_extract.cpp
872
int c = getopt_long(argc, (char**)argv, "+C:hi:", sLongOptions, NULL);
src/bin/package/command_info.cpp
33
int c = getopt_long(argc, (char**)argv, "f:h", sLongOptions, NULL);
src/bin/package/command_list.cpp
328
int c = getopt_long(argc, (char**)argv, "+ahip", sLongOptions, NULL);
src/bin/package/command_recompress.cpp
59
int c = getopt_long(argc, (char**)argv, "+0123456789:hz:qv",
src/bin/package_repo/command_create.cpp
130
int c = getopt_long(argc, (char**)argv, "+C:hqv", sLongOptions, NULL);
src/bin/package_repo/command_list.cpp
136
int c = getopt_long(argc, (char**)argv, "+hfv", sLongOptions, NULL);
src/bin/package_repo/command_update.cpp
239
int c = getopt_long(argc, (char**)argv, "+C:hqvt", sLongOptions, NULL);
src/bin/pkgman/command_add_repo.cpp
59
int c = getopt_long(argc, (char**)argv, "hu", sLongOptions, NULL);
src/bin/pkgman/command_drop_repo.cpp
56
int c = getopt_long(argc, (char**)argv, "hu", sLongOptions, NULL);
src/bin/pkgman/command_full_sync.cpp
69
int c = getopt_long(argc, (char**)argv, "hHy", sLongOptions, NULL);
src/bin/pkgman/command_info.cpp
75
int c = getopt_long(argc, (char**)argv, "hs:v", sLongOptions, NULL);
src/bin/pkgman/command_install.cpp
79
int c = getopt_long(argc, (char**)argv, "hHRy", sLongOptions, NULL);
src/bin/pkgman/command_list_repos.cpp
70
int c = getopt_long(argc, (char**)argv, "hv", sLongOptions, NULL);
src/bin/pkgman/command_refresh.cpp
54
int c = getopt_long(argc, (char**)argv, "hu", sLongOptions, NULL);
src/bin/pkgman/command_resolve_dependencies.cpp
128
int c = getopt_long(argc, (char**)argv, "h", sLongOptions, NULL);
src/bin/pkgman/command_search.cpp
231
int c = getopt_long(argc, (char**)argv, "aDhinurs:", sLongOptions, NULL);
src/bin/pkgman/command_uninstall.cpp
67
int c = getopt_long(argc, (char**)argv, "hHy", sLongOptions, NULL);
src/bin/pkgman/command_update.cpp
71
int c = getopt_long(argc, (char**)argv, "hHy", sLongOptions, NULL);
src/bin/ramdisk.cpp
132
int c = getopt_long(argc, (char**)argv, "+s:h", sLongOptions, NULL);
src/bin/ramdisk.cpp
239
int c = getopt_long(argc, (char**)argv, "+h", sLongOptions, NULL);
src/bin/ramdisk.cpp
303
int c = getopt_long(argc, (char**)argv, "+h", sLongOptions, NULL);
src/bin/ramdisk.cpp
363
int c = getopt_long(argc, (char**)argv, "+h", sLongOptions, NULL);
src/bin/rmindex.cpp
181
while ((c = getopt_long(argc, argv, "d:ht:pv", longopts, NULL)) != -1) {
src/bin/roster.cpp
109
while ((c = getopt_long(argc, argv, "nth", kLongOptions, NULL)) != -1) {
src/bin/screenmode/screenmode.cpp
138
while ((c = getopt_long(argc, argv, "shlfqmb:B", kLongOptions, NULL)) != -1) {
src/bin/setarch.cpp
153
int c = getopt_long(argc, (char**)argv, "+hlp",
src/bin/vmstat.cpp
45
while ((c = getopt_long(argc, argv, "pr:h", kLongOptions, NULL)) != -1) {
src/bin/watch.c
106
while ((optc = getopt_long(argc, argv, "+d::hn:vt", longopts, (int *) 0))
src/system/libroot/posix/glibc/extensions/getopt1.c
94
c = getopt_long (argc, argv, "abc:d:0123456789",
src/system/libroot/posix/glibc/extensions/getopt_ext.h
66
extern int getopt_long (int ___argc, char *__getopt_argv_const *___argv,
src/tests/add-ons/kernel/file_systems/shared/fragmenter.cpp
81
opt = getopt_long(argc, argv, "hs:f:", longOptions, &optionIndex);
src/tests/add-ons/kernel/file_systems/shared/random_file_actions.cpp
737
while ((c = getopt_long(argc, argv, "r:s:f:d:c:m:b:naki:vh", kOptions,
src/tests/add-ons/print/transports/main.cpp
43
while ((c = getopt_long(argc, argv, "hvp", longopts, 0)) > 0) {
src/tests/kits/media/playsound/playsound.cpp
68
c = getopt_long (argc, argv, "lgp:", long_options, &option_index);
src/tests/kits/support/compression_test.cpp
69
int c = getopt_long(argc, (char**)argv, "+0123456789df:hi", sLongOptions, NULL);
src/tests/system/kernel/scheduler/main.cpp
360
while ((option = getopt_long(argc, argv, "", kOptions, NULL)) != -1) {
src/tests/system/network/multicast/multicat.c
88
while ((ch = getopt_long(argc, argv, "hvo:pt:s:", longopts, 0)) > 0) {
src/tests/system/network/multicast/multisend.c
48
while ((ch = getopt_long(argc, argv, "his:b:t:", longopts, 0)) > 0) {
src/tools/anyboot/anyboot.cpp
195
c = getopt_long(argc, argv, "+hb:e:", long_options, NULL);
src/tools/create_image.cpp
53
c = getopt_long(argc, argv, "+hi:cf:", long_options, NULL);
src/tools/mbrtool/mbrtool.cpp
148
c = getopt_long(argc, argv, "+ha", long_options, NULL);
src/tools/opd_to_package_info/opd_to_package_info.cpp
184
int c = getopt_long(argc, (char**)argv, "+ha:d:p:s:v:V:", kLongOptions,
src/tools/vmdkimage/vmdkimage.cpp
179
c = getopt_long(argc, argv, "dh:i:u:cHf:", long_options, NULL);