CAResult_t CALEClientStartUnicastServer(const char* address)
{
+#ifndef TB_LOG
+ (void)address;
+#endif
OIC_LOG_V(DEBUG, TAG, "it is not needed in this platform (%s)", address);
return CA_NOT_SUPPORTED;
}
else
{
+#ifndef TB_LOG
+ (void)status;
+#endif
OIC_LOG_V(DEBUG, TAG, "LE Connection state is [newState : %d, status %d]", newState,
status);
}
VERIFY_NON_NULL_VOID(env, TAG, "env");
VERIFY_NON_NULL_VOID(obj, TAG, "obj");
VERIFY_NON_NULL_VOID(gattService, TAG, "gattService");
-
+#ifndef TB_LOG
+ (void)status;
+#endif
OIC_LOG_V(DEBUG, TAG, "Gatt Service Added Callback(%d)", status);
}
jint rssi,
jint status)
{
+#ifndef TB_LOG
+ (void)rssi;
+ (void)status;
+#endif
OIC_LOG_V(DEBUG, TAG, "caManagerLeRemoteRssiCallback - rssi : %d: ", rssi);
OIC_LOG_V(DEBUG, TAG, "caManagerLeRemoteRssiCallback - status : %d: ", status);
VERIFY_NON_NULL_VOID(env, TAG, "env");
res = CA_STATUS_FAILED;
}
#endif
+
+#if !defined(LE_ADAPTER) && !defined(EDR_ADAPTER)
+ (void)env;
+ (void)jvm;
+ (void)context;
+#endif
return res;
}
CAManagerLESetScanInterval(intervalTime, workingCount);
return CA_STATUS_OK;
#else
+ (void)intervalTime;
+ (void)workingCount;
OIC_LOG(DEBUG, TAG, "it is not supported");
return CA_NOT_SUPPORTED;
#endif