HomeSort by relevance Sort by last modified time
    Searched defs:term (Results 1 - 25 of 47) sorted by null

1 2

  /bionic/libc/unistd/
isatty.c 36 struct termios term; local
38 return tcgetattr (fd, &term) == 0;
  /external/dropbear/
netbsd_getpass.c 63 struct termios term; local
93 (void)tcgetattr(fileno(fp), &term); local
94 if ((echo = (term.c_lflag & ECHO)) != 0) {
95 term.c_lflag &= ~ECHO;
96 (void)tcsetattr(fileno(fp), TCSAFLUSH /*|TCSASOFT*/, &term); local
107 term.c_lflag |= ECHO;
108 (void)tcsetattr(fileno(fp), TCSAFLUSH/*|TCSASOFT*/, &term); local
chansession.h 49 unsigned char * term; member in struct:ChanSess
cli-chansession.c 286 unsigned char* term = NULL; local
296 term = getenv("TERM");
297 if (term == NULL) {
298 term = "vt100"; /* Seems a safe default */
300 buf_putstring(ses.writepayload, term, strlen(term));
  /external/grub/stage2/
terminfo.c 34 struct terminfo term = variable in typeref:struct:terminfo
222 grub_putstr (grub_tparm (term.cursor_address, y, x));
229 grub_putstr (grub_tparm (term.clear_screen));
236 grub_putstr (grub_tparm (term.enter_standout_mode));
243 grub_putstr (grub_tparm (term.exit_standout_mode));
250 grub_memmove (&term, new, sizeof (struct terminfo));
257 grub_memmove (copy, &term, sizeof (struct terminfo));
  /external/chromium/base/
string_split.cc 130 const STR term = str.substr(begin_index); local
132 TrimWhitespace(term, TRIM_ALL, &tmp);
136 const STR term = str.substr(begin_index, end_index - begin_index); local
138 TrimWhitespace(term, TRIM_ALL, &tmp);
  /external/chromium/chrome/browser/history/
history_notifications.h 94 string16 term; member in struct:history::KeywordSearchTermDetails
in_memory_url_index_unittest.cc 120 InMemoryURLIndex::String16Vector Make1Term(const char* term) {
122 terms.push_back(UTF8ToUTF16(term));
189 // The term will be lowercased by the search.
191 // See if a very specific term gives a single result.
286 string16 term = ASCIIToUTF16("drudgereport"); local
289 InMemoryURLIndex::Char16SetFromString16(term).size());
291 InMemoryURLIndex::Char16VectorFromString16(term);
404 string16 term = ASCIIToUTF16("drudgerepo"); local
405 terms.push_back(term);
409 // Exercise the term matching cache with the same term
    [all...]
  /external/srec/seti/sltsEngine/include/
SWIslts.h 61 SWIsltsResult (*term) (void); member in struct:SWIsltsWrapper
  /external/libpcap/
grammar.y 154 %type <blk> expr id nid pid term rterm qid
218 expr: term
219 | expr and term { gen_and($1.b, $3.b); $$ = $3; }
221 | expr or term { gen_or($1.b, $3.b); $$ = $3; }
293 term: rterm label
294 | not term { gen_not($2.b); $$ = $2; }
  /external/skia/android_sample/SampleApp/src/com/skia/sampleapp/
SampleApp.java 79 term(); method
103 private native void term(); method in class:SampleApp
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 65 %type <p> pas pattern ppattern plist pplist patlist prarg term re
214 | ppattern term %prec CAT { $$ = op2(CAT, $1, $2); }
216 | term
247 | pattern term %prec CAT { $$ = op2(CAT, $1, $2); }
249 | term
295 print prarg '|' term {
298 | print prarg APPEND term {
301 | print prarg GT term {
351 term: label
352 term '/' ASGNOP term { $$ = op2(DIVEQ, $1, $4);
    [all...]
  /cts/tools/dasm/src/java_cup/
emit.java 244 terminal term; local
269 term = (terminal)e.nextElement();
272 out.println(" static final int " + term.name() + " = " +
273 term.index() + ";");
Main.java 452 terminal term; local
458 term = (terminal)t.nextElement();
461 if (term == terminal.EOF) continue;
464 if (term == terminal.error) continue;
467 if (term.use_count() == 0)
473 System.err.println("Warning: Terminal \"" + term.name() +
  /external/chromium/chrome/browser/autocomplete/
search_provider_unittest.cc 28 // . The URL created by using the search term term1_ with default_t_url_ is
30 // . The URL created by using the search term keyword_term_ with keyword_t_url_
118 // Add url1, with search term term1_.
138 // Add a page and search term for keyword_t_url_.
224 string16 term = term1_.substr(0, term1_.size() - 1); local
225 QueryForInput(term, false, false);
234 ReplaceSearchTerms(*default_t_url_, term, 0, string16()));
247 // term term1.
254 *default_t_url_, term, 0, string16()));
265 string16 term = term1_.substr(0, term1_.size() - 1) local
276 string16 term = keyword_term_.substr(0, keyword_term_.size() - 1); local
    [all...]
  /external/quake/quake/src/QW/client/
sys_android.c 269 char *term; local
272 term = getenv("TERM");
273 if (term && !strcmp(term, "xterm"))
sys_linux.c 264 char *term; local
267 term = getenv("TERM");
268 if (term && !strcmp(term, "xterm"))
  /external/quake/quake/src/WinQuake/
sys_linux.cpp 262 char *term; local
265 term = getenv("TERM");
266 if (term && !strcmp(term, "xterm"))
  /external/srec/srec/include/
hmm_desc.h 125 struct terminal_tree_node_info term; member in union:__anon11341
  /system/core/liblinenoise/
linenoise.c 43 * - Switch to gets() if $TERM is something we can't support.
97 char *term = getenv("TERM"); local
100 if (term == NULL) return 0;
102 if (!strcasecmp(term,unsupported_term[j])) return 1;
  /system/core/sh/
histedit.c 108 char *term, *shname; local
122 term = lookupvar("TERM");
123 if (term)
124 setenv("TERM", term, 1);
126 unsetenv("TERM");
184 setterm(const char *term)
186 if (el != NULL && term != NULL)
187 if (el_set(el, EL_TERMINAL, term) != 0)
    [all...]
  /external/wpa_supplicant_8/hostapd/
config_file.c 1404 char *term; local
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_model_unittest.cc 796 const string16 term; member in struct:TestData
816 EXPECT_EQ(data[i].term, GetAndClearSearchTerm());
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
session.cc 800 SessionTerminate term; local
801 if (!ParseSessionTerminate(msg.protocol, msg.action_elem, &term, error))
804 SignalReceivedTerminateReason(this, term.reason);
805 if (term.debug_reason != buzz::STR_EMPTY) {
806 LOG(LS_VERBOSE) << "Received error on call: " << term.debug_reason;
973 SessionTerminate term(reason);
974 return SendMessage(ACTION_SESSION_TERMINATE, term, error);
978 const SessionTerminate& term,
980 WriteSessionTerminate(protocol, term, elems);
    [all...]
  /external/icu4c/i18n/
chnsecal.cpp 458 * Return the major solar term on or after December 15 of the given
532 * Return the major solar term on or before a given date. This
549 int32_t term = ( ((int32_t)(6 * solarLongitude / CalendarAstronomer::PI)) + 2 ) % 12; local
550 if (term < 1) {
551 term += 12;
553 return term;
557 * Return true if the given month lacks a major solar term.

Completed in 1032 milliseconds

1 2