Fix a bug for using heap after free
[platform/core/connectivity/stc-manager.git] / include / stc-statistics.h
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
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 #ifndef __STC_STATISTICS_H__
18 #define __STC_STATISTICS_H__
19
20 #include <glib.h>
21 #include "stc-manager.h"
22 #include "stc-manager-gdbus.h"
23
24 /*****************************************************************************
25  * Macros and Typedefs
26  *****************************************************************************/
27
28 /*****************************************************************************
29  * Functions Declaration
30  *****************************************************************************/
31
32 gboolean handle_statistics_init(StcStatistics *object,
33                                GDBusMethodInvocation *invocation);
34
35 gboolean handle_statistics_get_all(StcStatistics *object,
36                                    GDBusMethodInvocation *invocation,
37                                    GVariant *select_rule,
38                                    void *user_data);
39
40 gboolean handle_statistics_get(StcStatistics *object,
41                                GDBusMethodInvocation *invocation,
42                                const gchar *app_id,
43                                GVariant *select_rule,
44                                void *user_data);
45
46 gboolean handle_statistics_reset(StcStatistics *object,
47                                  GDBusMethodInvocation *invocation,
48                                  GVariant *reset_rule,
49                                  void *user_data);
50
51 #endif /* __STC_STATISTICS_H__ */