StructStat.java revision 5d930cadc8f62aee5f18e7921296fe66a54f18ab
1/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.system;
18
19/**
20 * File information returned by fstat(2), lstat(2), and stat(2). Corresponds to C's
21 * {@code struct stat} from
22 * <a href="http://www.opengroup.org/onlinepubs/000095399/basedefs/sys/stat.h.html">&lt;stat.h&gt;</a>
23 *
24 * @hide
25 */
26public final class StructStat extends libcore.io.StructStat {
27  public StructStat(long st_dev, long st_ino, int st_mode, long st_nlink, int st_uid, int st_gid,
28                    long st_rdev, long st_size, long st_atime, long st_mtime, long st_ctime,
29                    long st_blksize, long st_blocks) {
30    super(st_dev, st_ino, st_mode, st_nlink, st_uid, st_gid,
31          st_rdev, st_size, st_atime, st_mtime, st_ctime,
32          st_blksize, st_blocks);
33  }
34}
35