Fixed klockwork memory leaks and modified the logs
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / bt_edr_adapter / android / caedrnwmonitor.c
1 #include <stdio.h>
2 #include <string.h>
3 #include <jni.h>
4
5 #include "caedrinterface.h"
6 #include "logger.h"
7 #include "oic_malloc.h"
8 #include "uthreadpool.h" /* for thread pool */
9 #include "umutex.h"
10 #include "uarraylist.h"
11 #include "caadapterutils.h"
12
13 //#define DEBUG_MODE
14 #define TAG PCF("CA_EDR_MONITOR")
15
16 // temp method
17
18 CAResult_t CAEDRInitializeNetworkMonitor()
19 {
20     OIC_LOG_V(DEBUG, TAG, "IN");
21
22     OIC_LOG_V(DEBUG, TAG, "OUT");
23     return CA_STATUS_OK;
24 }
25
26 void CAEDRSetNetworkChangeCallback(
27     CAEDRNetworkStatusCallback networkChangeCallback)
28 {
29
30 }
31
32 void CAEDRTerminateNetworkMonitor(void)
33 {
34     OIC_LOG_V(DEBUG, TAG, "IN");
35
36     OIC_LOG_V(DEBUG, TAG, "OUT");
37 }
38
39 CAResult_t CAEDRStartNetworkMonitor()
40 {
41     OIC_LOG_V(DEBUG, TAG, "IN");
42
43     OIC_LOG_V(DEBUG, TAG, "OUT");
44     return CA_STATUS_OK;
45 }
46
47 CAResult_t CAEDRStopNetworkMonitor()
48 {
49     OIC_LOG_V(DEBUG, TAG, "IN");
50
51     OIC_LOG_V(DEBUG, TAG, "OUT");
52     return CA_STATUS_OK;
53 }
54
55 CAResult_t CAEDRClientSetCallbacks(void)
56 {
57     OIC_LOG_V(DEBUG, TAG, "IN");
58
59     OIC_LOG_V(DEBUG, TAG, "OUT");
60     return CA_STATUS_OK;
61 }