Searched defs:which (Results 1 - 25 of 88) sorted by relevance

1234

/external/openssh/contrib/
H A Dfindssl.sh92 # not all platforms have a 'which' command
93 if which ls >/dev/null 2>/dev/null; then
94 : which is defined
96 which () { function
115 if [ -x "`which locate`" ]
134 if [ -x "`which locate`" ]
163 if [ -x "`which locate`" ]
/external/dropbear/libtomcrypt/src/pk/katja/
H A Dkatja_exptmod.c26 @param which Which exponent to use, e.g. PK_PRIVATE or PK_PUBLIC
31 unsigned char *out, unsigned long *outlen, int which,
44 if (which == PK_PRIVATE && (key->type != PK_PRIVATE)) {
49 if (which != PK_PRIVATE && which != PK_PUBLIC) {
64 if (which == PK_PRIVATE) {
30 katja_exptmod(const unsigned char *in, unsigned long inlen, unsigned char *out, unsigned long *outlen, int which, katja_key *key) argument
/external/dropbear/libtomcrypt/src/pk/rsa/
H A Drsa_exptmod.c26 @param which Which exponent to use, e.g. PK_PRIVATE or PK_PUBLIC
31 unsigned char *out, unsigned long *outlen, int which,
44 if (which == PK_PRIVATE && (key->type != PK_PRIVATE)) {
49 if (which != PK_PRIVATE && which != PK_PUBLIC) {
64 if (which == PK_PRIVATE) {
30 rsa_exptmod(const unsigned char *in, unsigned long inlen, unsigned char *out, unsigned long *outlen, int which, rsa_key *key) argument
/external/llvm/utils/lit/lit/
H A DUtil.py38 # Ignore EEXIST, which may occur during a race condition.
51 def which(command, paths = None): function
52 """which(command, [paths]) - Look up the given command in the paths string
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DOutputCollector.java27 * by the primary list, such as switch case tables) — which it
33 * {@code non-null;} the associated finisher (which holds the instruction
69 * Reverses a branch which is buried a given number of instructions
73 * @param which how many instructions back to find the branch;
78 public void reverseBranch(int which, CodeAddress newTarget) { argument
79 finisher.reverseBranch(which, newTarget);
109 * Helper for {@link #getFinisher}, which appends the suffix to
/external/icu4c/common/
H A Ducnv_cnv.c32 UConverterUnicodeSet which,
40 UConverterUnicodeSet which,
30 ucnv_getCompleteUnicodeSet(const UConverter *cnv, const USetAdder *sa, UConverterUnicodeSet which, UErrorCode *pErrorCode) argument
38 ucnv_getNonSurrogateUnicodeSet(const UConverter *cnv, const USetAdder *sa, UConverterUnicodeSet which, UErrorCode *pErrorCode) argument
/external/webkit/Source/WebCore/dom/
H A DUIEvent.cpp92 int UIEvent::which() const function in class:WebCore::UIEvent
H A DKeyboardEvent.cpp149 int KeyboardEvent::which() const function in class:WebCore::KeyboardEvent
151 // Netscape's "which" returns a virtual key code for keydown and keyup, and a character code for keypress.
/external/webkit/Tools/android/flex-2.5.4a/MISC/VMS/
H A Dvms-code.c24 int i, oargc, punct, which, append, alt_rfm; local
63 which = (p[1] == '&' ? ERR_FD : OUT_FD);
64 if (which == ERR_FD) ++p;
65 mode[which] = append ? "a" : "w";
66 rfm[which] = alt_rfm ? "rfm=var" : "rfm=stmlf";
67 name[which] = ++p;
69 name[which] = (*iargv)[++i];
/external/chromium/third_party/libevent/test/
H A Dbench.c67 read_cb(int fd, short which, void *arg) argument
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dcaptest.c204 int which = 0, i; local
214 which = 1;
216 which = 2;
218 which = 3;
224 switch (which)
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_service.cc272 void ServiceGenerator::GenerateGetPrototype(RequestOrResponse which, argument
274 if (which == REQUEST) {
290 (which == REQUEST) ? method->input_type() : method->output_type();
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_service.cc253 void ServiceGenerator::GenerateGetPrototype(RequestOrResponse which, argument
269 "request_or_response", (which == REQUEST) ? "Request" : "Response");
278 (which == REQUEST) ? method->input_type() : method->output_type());
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpreferences.cpp63 void QWKPreferences::setFontFamily(FontFamily which, const QString& family) argument
65 switch (which) {
89 QString QWKPreferences::fontFamily(FontFamily which) const
91 switch (which) {
/external/chromium/third_party/libevent/
H A Ddevpoll.c248 int which = 0; local
262 which |= EV_READ;
267 which |= EV_WRITE;
270 if (!which)
H A Dkqueue.c247 int which = 0; local
271 which |= EV_READ;
273 which |= EV_WRITE;
275 which |= EV_SIGNAL;
278 if (!which)
285 event_active(ev, which, events[i].data);
293 event_active(ev, which, 1);
/external/dropbear/
H A Dscpmisc.c167 replacearg(arglist *args, u_int which, char *fmt, ...) argument
179 if (which >= args->num)
181 which, args->num);
182 xfree(args->list[which]);
183 args->list[which] = cp;
/external/icu4c/test/cintltst/
H A Dchashtst.c284 static const char which[] = "which"; local
302 _put(hash, which, 1, 0);
308 _remove(hash, which, 2);
/external/openssh/
H A Ddh.c129 int best, bestcount, which; local
169 which = arc4random_uniform(bestcount);
175 linenum++ != which) {
183 if (linenum != which+1)
185 which, _PATH_DH_PRIMES);
H A Dmac.c75 mac_setup_by_id(Mac *mac, int which) argument
78 mac->type = macs[which].type;
80 mac->evp_md = (*macs[which].mdfunc)();
85 mac->mac_len = macs[which].len / 8;
86 mac->key_len = macs[which].key_len / 8;
89 if (macs[which].truncatebits != 0)
90 mac->mac_len = macs[which].truncatebits / 8;
/external/strace/
H A Dbjm.c59 /* Values for query_module's which. */
81 static const struct xlat which[] = { variable in typeref:struct:xlat
108 printxval(which, tcp->u_arg[1], "QM_???");
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DFunctionTable.java319 * @param which The function ID, which may correspond to one of the FUNC_XXX
328 Function getFunction(int which) argument
332 if (which < NUM_BUILT_IN_FUNCS)
333 return (Function) m_functions[which].newInstance();
336 which-NUM_BUILT_IN_FUNCS].newInstance();
347 * @return a function ID, which may correspond to one of the FUNC_XXX values
/external/chromium/third_party/libjingle/source/talk/base/
H A Dunixfilesystem.cc332 bool UnixFilesystem::GetFileTime(const Pathname& path, FileTimeType which, argument
337 switch (which) {
H A Dwin32filesystem.cc44 // a virtualized path being returned, which is wrong if you only plan to read.
333 bool Win32Filesystem::GetFileTime(const Pathname& path, FileTimeType which, argument
339 switch (which) {
/external/clang/utils/analyzer/
H A DSATestBuild.py26 The files which should be kept around for failure investigations:
75 def which(command, paths = None): function
76 """which(command, [paths]) - Look up the given command in the paths string
139 Clang = which("clang", os.environ['PATH'])

Completed in 783 milliseconds

1234