HomeSort by relevance Sort by last modified time
    Searched defs:st (Results 526 - 550 of 1469) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/r11/sources/android/support/src/musl-locale/
iconv.c 166 mbstate_t st = {0}; local
182 l = mbrtowc_utf8(&wc, *in, *inb, &st);
  /prebuilts/ndk/r13/sources/android/support/src/musl-locale/
iconv.c 166 mbstate_t st = {0}; local
182 l = mbrtowc_utf8(&wc, *in, *inb, &st);
  /system/bt/stack/btm/
btm_ble_adv_filter.cc 88 tBTM_STATUS st = BTM_SUCCESS; local
93 st = BTM_MODE_UNSUPPORTED;
94 return st;
99 return st;
  /system/bt/stack/hid/
hidd_api.cc 86 tHID_STATUS st; local
95 st = hidd_conn_reg();
96 if (st != HID_SUCCESS) return st;
  /system/core/adb/
adb_auth_host.cpp 204 struct stat st; local
205 if (stat(path.c_str(), &st) != 0) {
210 if (S_ISREG(st.st_mode)) {
212 } else if (S_ISDIR(st.st_mode)) {
245 LOG(ERROR) << "unexpected type for '" << path << "': 0x" << std::hex << st.st_mode;
file_sync_service.cpp 110 struct stat st = {}; local
111 lstat(path, &st);
112 msg.stat_v1.mode = st.st_mode;
113 msg.stat_v1.size = st.st_size;
114 msg.stat_v1.time = st.st_mtime;
129 struct stat st = {}; local
130 int rc = stat_fn(path, &st);
134 msg.stat_v2.dev = st.st_dev;
135 msg.stat_v2.ino = st.st_ino;
136 msg.stat_v2.mode = st.st_mode
161 struct stat st; local
381 struct stat st; local
    [all...]
  /system/core/debuggerd/
crash_dump.cpp 77 struct stat st; local
79 return fstatat(pid_proc_fd, task_path.c_str(), &st, 0) == 0;
  /system/core/debuggerd/tombstoned/
tombstoned.cpp 160 struct stat st; local
161 if (stat(path.c_str(), &st) != 0) {
171 if (st.st_mtime < oldest_time) {
173 oldest_time = st.st_mtime;
  /system/core/libbacktrace/
backtrace_offline_test.cpp 290 struct stat st; local
291 if (stat(testlib_path.c_str(), &st) == -1) {
367 struct stat st; local
368 ASSERT_EQ(0, stat(testlib_path.c_str(), &st)) << "can't find testlib " << testlib_path;
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd.c 79 STAT st; /* statistics */ variable
280 (void)gettimeofday(&st.start, NULL); /* Statistics timestamp. */
339 if (cpy_cnt && (st.in_full + st.in_part) >= cpy_cnt)
392 ++st.in_full;
397 ++st.in_full;
406 ++st.in_part;
423 ++st.swab;
542 st.bytes += pending;
543 st.sparse += pending/out.dbsz
    [all...]
  /system/extras/ioshark/
compile_ioshark.c 534 struct stat st; local
546 if (stat(infile, &st) < 0) {
551 if (st.st_size == 0) {
  /system/tools/hidl/
Coordinator.cpp 591 struct stat st; local
592 if (stat(partial.c_str(), &st) < 0) {
601 } else if (!S_ISDIR(st.st_mode)) {
  /system/tools/hidl/c2hal/
AST.cpp 323 struct stat st; local
324 if (stat(partial.c_str(), &st) < 0) {
333 } else if (!S_ISDIR(st.st_mode)) {
  /toolchain/binutils/binutils-2.25/bfd/
coff-stgo32.c 287 struct stat st; local
301 if (stat (stub, &st) != 0)
  /toolchain/binutils/binutils-2.25/binutils/
strings.c 354 struct stat st;
356 if (bfd_stat (abfd, &st))
360 *filesizep = st.st_size;
428 struct stat st;
432 if (stat (file, &st) < 0)
351 struct stat st; local
425 struct stat st; local
  /toolchain/binutils/binutils-2.25/libiberty/
make-relative-prefix.c 291 struct stat st; local
292 if (stat (nstore, &st) >= 0 && S_ISREG (st.st_mode))
  /external/testng/src/main/java/org/testng/internal/
Utils.java 70 StringTokenizer st = new StringTokenizer(s, " ,"); local
71 String[] result = new String[st.countTokens()];
73 result[i] = st.nextToken();
92 StringTokenizer st = new StringTokenizer(line, " "); local
93 while (st.hasMoreTokens()) {
94 vResult.add(st.nextToken());
  /libcore/luni/src/test/java/libcore/java/sql/
OldConnectionTest.java 50 Statement st = null; local
55 st = conn.createStatement(ResultSet.TYPE_FORWARD_ONLY,
57 st.execute("select id, name from zoo");
58 rs = st.getResultSet();
68 st.close();
75 st = conn.createStatement(ResultSet.TYPE_FORWARD_ONLY,
77 st.execute("select id, name from zoo");
78 rs = st.getResultSet();
89 st.close();
96 st = conn.createStatement(ResultSet.TYPE_FORWARD_ONLY
183 Statement st = null; local
215 Statement st = null; local
260 Statement st = null; local
308 Statement st = null; local
390 Statement st = null; local
470 Statement st = null; local
560 Statement st = null; local
673 Statement st = null; local
756 Statement st = null; local
842 Statement st = null; local
887 Statement st = null; local
1125 Statement st = null; local
1171 Statement st = null; local
1228 Statement st = null; local
1288 Statement st = null; local
1939 PreparedStatement st = null; local
2000 PreparedStatement st = null; local
2025 PreparedStatement st = null; local
2180 Statement st = conn.createStatement(); local
    [all...]
OldPreparedStatementTest.java 84 Statement st = null; local
86 st = conn.createStatement();
88 st.execute(queries[i]);
92 st.close();
99 Statement st = null; local
101 st = conn.createStatement();
102 st.execute("drop table if exists type");
105 st.close();
125 Statement st = null; local
128 st = conn.createStatement()
177 Statement st = null; local
485 Statement st = null; local
544 Statement st = null; local
600 Statement st = null; local
653 Statement st = null; local
708 Statement st = null; local
778 Statement st = null; local
858 Statement st = null; local
933 Statement st = null; local
1002 Statement st = null; local
1071 Statement st = null; local
1139 Statement st = null; local
1198 Statement st = null; local
1313 Statement st = null; local
1464 Statement st = null; local
1547 Statement st = null; local
1640 Statement st = null; local
1739 Statement st = null; local
1832 Statement st = null; local
1928 Statement st = null; local
1988 Statement st = null; local
2115 Statement st = null; local
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 117 states st; /* current states */ member in struct:match
145 static void print(struct match *m, char *caption, states st, int ch, FILE *d);
231 SETUP(m->st);
779 states st = m->st; local
793 CLEAR(st);
794 SET1(st, startst);
795 st = step(m->g, startst, stopst, st, NOTHING, st);
874 states st = m->st; local
    [all...]
  /bionic/tools/versioner/src/
versioner.cpp 101 struct stat st;
102 if (stat(dependency.c_str(), &st) != 0) {
106 if (!S_ISDIR(st.st_mode)) {
501 struct stat st; local
502 if (stat(platform_dir.c_str(), &st) != 0) {
505 if (!S_ISDIR(st.st_mode)) {
598 struct stat st; local
599 if (stat(header_dir.c_str(), &st) != 0) {
601 } else if (!S_ISDIR(st.st_mode)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
_iomodule.c 450 struct stat st;
461 if (fstat(fileno, &st) >= 0 && st.st_blksize > 1)
462 buffering = st.st_blksize;
447 struct stat st; local
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
_iomodule.c 448 struct stat st;
459 if (fstat(fileno, &st) >= 0 && st.st_blksize > 1)
460 buffering = st.st_blksize;
445 struct stat st; local
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitBaseTest.java 216 /** If rule has return value, determine if it contains an AST or a ST */
230 StringTemplate st = (StringTemplate) returnName.invoke(ruleReturn); local
231 stString = st.toString();
259 else if ( stString!=null ) {// Return toString of ST
388 /** If tree rule has return value, determine if it contains an AST or a ST */
402 StringTemplate st = (StringTemplate) treeReturnName.invoke(treeRuleReturn); local
403 stString = st.toString();
432 else if ( stString!=null ) {// Return toString of ST
  /external/autotest/client/site_tests/camera_V4L2/src/
media_v4l2_device.cc 40 struct stat st; local
41 if (-1 == stat(dev_name_, &st)) {
47 if (!S_ISCHR(st.st_mode)) {
53 if (MAJOR(st.st_rdev) != V4L2_VIDEO_CAPTURE_MAJOR
54 || MINOR(st.st_rdev) >= V4L2_VIDEO_CAPTURE_MINOR_MAX) {

Completed in 1748 milliseconds

<<21222324252627282930>>