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 
17 package android.net;
18 
19 import android.net.INetworkStatsSession;
20 import android.net.NetworkStats;
21 import android.net.NetworkStatsHistory;
22 import android.net.NetworkTemplate;
23 
24 /** {@hide} */
25 interface INetworkStatsService {
26 
27     /** Start a statistics query session. */
openSession()28     INetworkStatsSession openSession();
29 
30     /** Return network layer usage total for traffic that matches template. */
getNetworkTotalBytes(in NetworkTemplate template, long start, long end)31     long getNetworkTotalBytes(in NetworkTemplate template, long start, long end);
32 
33     /** Return data layer snapshot of UID network usage. */
getDataLayerSnapshotForUid(int uid)34     NetworkStats getDataLayerSnapshotForUid(int uid);
35     /** Return set of any ifaces associated with mobile networks since boot. */
getMobileIfaces()36     String[] getMobileIfaces();
37 
38     /** Increment data layer count of operations performed for UID and tag. */
incrementOperationCount(int uid, int tag, int operationCount)39     void incrementOperationCount(int uid, int tag, int operationCount);
40 
41     /** Mark given UID as being in foreground for stats purposes. */
setUidForeground(int uid, boolean uidForeground)42     void setUidForeground(int uid, boolean uidForeground);
43 
44     /** Force update of ifaces. */
forceUpdateIfaces()45     void forceUpdateIfaces();
46     /** Force update of statistics. */
forceUpdate()47     void forceUpdate();
48 
49     /** Advise persistance threshold; may be overridden internally. */
advisePersistThreshold(long thresholdBytes)50     void advisePersistThreshold(long thresholdBytes);
51 
52 }
53