Searched defs:st (Results 1 - 25 of 307) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DStreamTokenizerTest.java34 StreamTokenizer st; field in class:StreamTokenizerTest
43 st = new StreamTokenizer(new StringBufferInputStream(
47 StreamTokenizer.TT_WORD, st.nextToken());
49 "d", st.sval);
52 StreamTokenizer.TT_NUMBER, st.nextToken());
54 8.0, st.nval);
57 39, st.nextToken());
59 "h", st.sval);
68 StreamTokenizer.TT_WORD, st.nextToken());
70 "d", st
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DThreadTest.java121 Thread st, ct, spinner; field in class:ThreadTest
162 st = new Thread(tg, new SimpleThread(1), "SimpleThread2");
163 assertTrue("Returned incorrect thread group", st.getThreadGroup() == tg);
164 st.start();
166 st.join();
180 st = new Thread(tg, new SimpleThread(1), "SimpleThread3");
181 assertTrue("Constructed incorrect thread", (st.getThreadGroup() == tg)
182 && st.getName().equals("SimpleThread3"));
183 st.start();
185 st
[all...]
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DStatementEventTest.java40 private static StatementEvent st = new StatementEvent(pc, null); field in class:StatementEventTest
57 assertNotNull(st);
71 assertNull(st.getStatement());
78 assertNull(st.getSQLException());
85 SerializationTest.verifySelf(st, STATEMENTEVENT_COMPARATOR);
/external/bison/lib/
H A Derror.c153 mbstate_t st; local
155 memset (&st, '\0', sizeof (st));
156 res = mbsrtowcs (wbuf, &tmp, len, &st);
/external/blktrace/
H A Dblkparse.c2411 struct stat st; local
2432 if (stat(pci->fname, &st) < 0)
2434 if (!st.st_size)
2647 struct stat st; local
2651 if (!stat(str, &st) && S_ISFIFO(st.st_mode))
H A Dblkrawverify.c279 struct stat st; local
299 if (stat(fname, &st) < 0) {
H A Dblktrace.c2015 struct statfs st; local
2136 if (statfs(debugfs_path, &st) < 0 || st.f_type != (long)DEBUGFS_TYPE) {
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config.c128 struct stat st; local
129 if(stat(CFG_PATH, &st) != 0)
H A Dbtif_config_util.cpp360 struct stat st; local
361 st.st_size = 0;
367 if(fstat(fd, &st) == 0 && st.st_size)
369 *size = st.st_size;
/external/bluetooth/bluedroid/stack/hid/
H A Dhidh_api.c279 tHID_STATUS st; local
288 if( (st = hidh_conn_reg()) != HID_SUCCESS )
290 return st;
/external/bluetooth/bluedroid/stack/smp/
H A Daes.c404 static void shift_sub_rows( uint_8t st[N_BLOCK] )
407 st[ 0] = s_box(st[ 0]); st[ 4] = s_box(st[ 4]);
408 st[ 8] = s_box(st[ 8]); st[12] = s_box(st[12]);
410 tt = st[
438 { uint_8t st[N_BLOCK]; local
467 { uint_8t st[N_BLOCK]; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DRFC4519Style.java53 public static final ASN1ObjectIdentifier st = new ASN1ObjectIdentifier("2.5.4.8"); field in class:RFC4519Style
110 DefaultSymbols.put(st, "st");
154 DefaultLookUp.put("st", st);
/external/bsdiff/
H A Dbsdiff.c153 u_char *new,off_t newsize,off_t st,off_t en,off_t *pos)
157 if(en-st<2) {
158 x=matchlen(old+I[st],oldsize-I[st],new,newsize);
162 *pos=I[st];
170 x=st+(en-st)/2;
174 return search(I,old,oldsize,new,newsize,st,x,pos);
152 search(off_t *I,u_char *old,off_t oldsize, u_char *new,off_t newsize,off_t st,off_t en,off_t *pos) argument
/external/chromium/base/
H A Dfile_util_posix.cc113 stat_wrapper_t st; local
114 int test = CallStat(path.Append(ent->d_name).value().c_str(), &st);
134 if (static_cast<time_t>(st.st_ctime) >= comparison_time.ToTimeT())
H A Dshared_memory_posix.cc44 struct stat st; local
45 if (fstat(handle.fd, &st) == 0) {
48 inode_ = st.st_ino;
272 struct stat st; local
273 if (fstat(mapped_file_, &st))
275 inode_ = st.st_ino;
H A Dtime_win.cc184 SYSTEMTIME st; local
185 st.wYear = exploded.year;
186 st.wMonth = exploded.month;
187 st.wDayOfWeek = exploded.day_of_week;
188 st.wDay = exploded.day_of_month;
189 st.wHour = exploded.hour;
190 st.wMinute = exploded.minute;
191 st.wSecond = exploded.second;
192 st.wMilliseconds = exploded.millisecond;
196 if (!SystemTimeToFileTime(&st,
224 SYSTEMTIME st; local
[all...]
/external/chromium/base/third_party/nspr/
H A Dprtime.cc103 SYSTEMTIME st = {0}; local
107 st.wYear = exploded->tm_year;
108 st.wMonth = exploded->tm_month + 1;
109 st.wDayOfWeek = exploded->tm_wday;
110 st.wDay = exploded->tm_mday;
111 st.wHour = exploded->tm_hour;
112 st.wMinute = exploded->tm_min;
113 st.wSecond = exploded->tm_sec;
114 st.wMilliseconds = exploded->tm_usec/1000;
116 if (!SystemTimeToFileTime(&st,
[all...]
/external/chromium/chrome/browser/
H A Dbrowser_main_gtk.cc121 struct stat st; local
126 if (stat("/proc/self/exe", &st) == 0 && st.st_uid == getuid())
/external/chromium/chrome/browser/chromeos/login/
H A Dcamera.cc336 struct stat st; local
337 if (stat(device_name, &st) == -1) {
341 if (!S_ISCHR(st.st_mode)) {
/external/chromium/net/base/
H A Dx509_certificate_openssl.cc190 void sk_X509_free_fn(STACK_OF(X509)* st) {
191 sk_X509_free(st); variable
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-port.h1549 inline bool IsDir(const StatStruct& st) { argument
1550 return (_S_IFDIR & st.st_mode) != 0;
1566 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }
/external/chromium/third_party/libevent/
H A Devdns.c289 #define OFFSET_OF(st, member) ((off_t) (((char*)&((st*)0)->member)-(char*)0))
2745 struct stat st; local
2759 if (fstat(fd, &st)) { err = 2; goto out1; }
2760 if (!st.st_size) {
2765 if (st.st_size > 65535) { err = 3; goto out1; } /* no resolv.conf should be any bigger */
2767 resolv = (u8 *) malloc((size_t)st.st_size + 1);
2771 while ((r = read(fd, resolv+n, (size_t)st.st_size-n)) > 0) {
2773 if (n == st.st_size)
2775 assert(n < st
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dunixfilesystem.cc101 struct stat st; local
102 int res = ::stat(pathname.c_str(), &st);
105 return S_ISDIR(st.st_mode) != 0;
259 struct stat st; local
260 if (stat(path.pathname().c_str(), &st) < 0)
262 return S_ISDIR(st.st_mode);
310 struct stat st; local
311 int res = ::stat(pathname.pathname().c_str(), &st);
313 return res == 0 && !S_ISDIR(st.st_mode);
317 struct stat st; local
325 struct stat st; local
334 struct stat st; local
[all...]
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dstatus.h176 static std::string TrimStatus(const std::string & st) { argument
177 std::string s(st);

Completed in 646 milliseconds

1234567891011>>