언어 설정

Menu
Sites
Language
Gear 2 BLE connectivity

Hello,

I am planning to develop an application for Gear 2 which will connect to an device over BLE. We already have an android and iPhone application for same. It can control the device over BLE. We want to do same using Gear 2. 

Is it possible to connect to device? If yes which approach should i go with either Native or Web application?

Please help.

Thanks in advance.

Responses

18 댓글
Raquibul Hasan

Dear Shraddha Shravagi,
Thanks for your question.
There is no SDK APIs for BLE function, Tizen 3.0 might have it (please check when it is released).

AFAIK - If someone wants to write a BLE based app for Gear devices they need to implement it as a framework application (needs to be part of binary). They also need to implement the central role on Gear side. iPhone will advertise BLE packets which your app (on GV side) needs to scan for. Once discovery is done, one needs to connect. Again BLE stack is not stable in Gear 2 devices so you might face difficulties.

If you are using Gear S2 (latest Gear device) please stay tunes for updates BLE support might come in future.

Hope this answers your question.

Thanks,
Raquibul

Raquibul Hasan

*If you are using Gear S2 (latest Gear device) please stay tuned for updates; BLE support might come in future.

Shraddha Shravagi

Hi,

Thanks a lot for your response. I have few more questions in same context.

Our current scenario has an device which has Nordic stack and which acts as an GATT server. We normally connect to it via mobile application which acts as an client and requests and gets the information. So will the Gear S2 device be able to run as an Client and connect to the device in future?

We are currently using Tizen 2.3.1 and we can scan and connect to our device using Native application. But we are not able to create a client for same bt_gatt_client_create. 

I also want to clarify regarding the approach for development of application: Should it be web application or native or any other?

I hope it will be possible via Samsung Galaxy S5 since you refered to iPhone. 

Tizen 3.0 mobile sdk has been released but is there any known timeline for Wearable sdk?

It would be great if I could get some timeline or some rough dates so that we can wait upon?

 

Regards,

Shraddha

 

Raquibul Hasan

Hello,

Where is the GATT server running? I thought you want to use BLE because you are using iPhone on the other end. If the other end allows Bluetooth then you should be able to connect using straight Bluetooth.

Re your question on native/web - I advise you to use native application because you can use the APIs directly (web uses Web runtime in the middle) and in that way you should get much more control (for example turning ON bluetooth automatically is possible through native APIs but may be not through web APIs).

We mentioned you are not able to create bt_gatt_client_create. If you provide the code and the error message we can follow up further.

Regarding timeline - I am not sure. We still need to wait for announcements.

Regards,

Raquibul

 

 

Shraddha Shravagi

Thanks for immediate reply and for spending time over it.

The GATT server is running on our custom Hardware manufactured by our company.

Let me explain you my current scenario.

We have an mobile application (Android 4.0+ BLE) which act as a GATT client establishes connection with an custom hardware via BLE. This hardware uses Nordic BLE stack which acts as a GATT server; It has few custom profiles with characteristics exposed for read write. Now the application connects with this device and reads the current characteristics and allows the user to modify their values.

Now we want to replace the mobile application with Gear app. The requirement states that the Gear will have an application running which will connect to our device and read characteristics and enable user to change them and write to device over BLE.

 

Following is my native code.:

//Initialize BT

ret = bt_initialize();
if(ret!= BT_ERROR_NONE){
     dlog_print(DLOG_ERROR, LOG_TAG, "BT init succss.");
}

//Register callbacks   

 ret = bt_gatt_set_connection_state_changed_cb(
                __bt_gatt_connection_state_changed_cb, NULL);
        ret = bt_socket_set_connection_state_changed_cb(
                socket_connection_state_changed, NULL);

//Scan for bt devices

        ret = bt_adapter_le_start_scan(__bt_adapter_le_scan_result_cb, NULL);
        if (ret != BT_ERROR_NONE)
        {
           dlog_print(DLOG_ERROR, LOG_TAG, "[bt_adapter_le_start_scan] Failed.");
        }    

//code for callback for le scan result

void __bt_adapter_le_scan_result_cb(int result,
        bt_adapter_le_device_scan_result_info_s *info, void *user_data) {
     if (info == NULL) {
        dlog_print(DLOG_INFO, LOG_TAG, "No discovery_info!");
        return;
    } else {
        dlog_print(DLOG_ERROR, LOG_TAG, "some info found");
    }

    ret = bt_gatt_connect("xx:xx:xx:xx:xx:xx", false);
    if (ret != BT_ERROR_NONE)
    {
       dlog_print(DLOG_ERROR, LOG_TAG, "Failed to connect LE device.");
    }else{
        dlog_print(DLOG_ERROR, LOG_TAG, "Connected to device successfully."); //================================== this is seen in logs
         ret = bt_gatt_client_create("xx:xx:xx:xx:xx:xx", &client);
         if (ret == BT_ERROR_NONE)
            dlog_print(DLOG_INFO, LOG_TAG, "Success in creating client");    //NEVER REACH HERE
            else{
                dlog_print(DLOG_INFO, LOG_TAG, "failure %d"+BT_ERROR_NONE);  //NEVER REACH HERE
                }
    }
}

 

RESPONSE :

LOGCAT

"BT init succss.

some info found

Connected to device successfully.

 Interpretation: I dont get any error neither it goes to gatt connection state changed listener:

Please help me if I am going wrong anywhere. 

 

 

Thanks & Regards,

Shraddha

Raquibul Hasan

Ok. Since BT scan finds some result I am assuming BT is turned ON before you try to connect. (It is a good practice to check if BT is ON, if not enable it using the APIs). A tutorial to managing BT connection can be found here: https://developer.tizen.org/development/tutorials/native-application/network/bluetooth#gatt

Please go through the tutorial and see if you are missing anything.

You can also send us system log using the following command: sdb dlog

(Pipe the output to a file and send us the output).

 

Sazzad Hissain Khan

Dear Shraddha,

Fist of all your LOG labels in both logs are different. One is for ERROR another is for INFO.

 dlog_print(DLOG_ERROR, LOG_TAG, "Connected to device successfully."); // this is seen in log
 if (ret == BT_ERROR_NONE)
      dlog_print(DLOG_INFO, LOG_TAG, "Success in creating client");    //NEVER REACH HERE

It seems you log filter is filtering only ERRORs hence you are not able to see the other info logs in logcat. Please check and confirm that your log filter is set to output all logs.

 

If you still get the same problem please follow the instructions below.

If you read the documentation for prerequisite for gatt connect (https://developer.tizen.org/development/tutorials/native-application/network/bluetooth#pre_gatt) you will see that they also have asked to register callbacks.

Register a callback for connection state changes:

 int ret = 0;
// Register for GATT connection callback
void
__bt_gatt_connection_state_changed_cb(int result, bool connected,
                                      const char *remote_address, void *user_data)
{
   if (connected)
      dlog_print(DLOG_INFO, LOG_TAG, "LE connected");
   else
      dlog_print(DLOG_INFO, LOG_TAG, "LE disconnected");
}


ret = bt_gatt_set_connection_state_changed_cb(__bt_gatt_connection_state_changed_cb, NULL);

I wonder if not registering state changed callback is the cause of such unexpected flow. Please register it and then try again.

 

I also suggest you for logging just after bt_gatt_client_create requst before IF and confirm that it reaches that point or not. like,

ret = bt_gatt_client_create("xx:xx:xx:xx:xx:xx", &client);
dlog_print(DLOG_ERROR, LOG_TAG, "Create operation requested");

And take a log. Please post your full log so that we can find where is the problem.

 

Thanks,

Hissain

 

Shraddha Shravagi

Hello, Thanks for your responses. As per your directions I have edited my code.

So the observations are:

1. I am getting Failure for registering gatt call back

2. Failure in reading characteristic

Questions:

1. Where do I register for the callback? As of now I have done in "main()". Previously I had done it in app_create() but the call back didnt get register.

2. What are the privilages required? For Tizen 2.3.1 app. As of now I have included bluetooth

 

Following is the source code:

#include "basicnativeapplication.h"
#include "bluetooth.h"
typedef struct appdata {
    Evas_Object *win;
	Evas_Object *conform;
	Evas_Object *label;
} appdata_s;

static void win_delete_request_cb(void *data, Evas_Object *obj,
		void *event_info) {
	ui_app_exit();
}

static void win_back_cb(void *data, Evas_Object *obj, void *event_info) {
	appdata_s *ad = data;
	/* Let window go to hide state. */
	elm_win_lower(ad->win);
}
bt_gatt_client_h client = NULL;
static void create_base_gui(appdata_s *ad) {
	/* Window */
	ad->win = elm_win_util_standard_add(PACKAGE, PACKAGE);
	elm_win_autodel_set(ad->win, EINA_TRUE);

	if (elm_win_wm_rotation_supported_get(ad->win)) {
		int rots[4] = { 0, 90, 180, 270 };
		elm_win_wm_rotation_available_rotations_set(ad->win,
				(const int *) (&rots), 4);
	}

	evas_object_smart_callback_add(ad->win, "delete,request",
			win_delete_request_cb, NULL);
	eext_object_event_callback_add(ad->win, EEXT_CALLBACK_BACK, win_back_cb,
			ad);

	/* Conformant */
	ad->conform = elm_conformant_add(ad->win);
	elm_win_indicator_mode_set(ad->win, ELM_WIN_INDICATOR_SHOW);
	elm_win_indicator_opacity_set(ad->win, ELM_WIN_INDICATOR_OPAQUE);
	evas_object_size_hint_weight_set(ad->conform, EVAS_HINT_EXPAND,
	EVAS_HINT_EXPAND);
	elm_win_resize_object_add(ad->win, ad->conform);
	evas_object_show(ad->conform);

	/* Label */
	ad->label = elm_label_add(ad->conform);
	elm_object_text_set(ad->label, "<align=center>Hello EFLf</align>");
	evas_object_size_hint_weight_set(ad->label, EVAS_HINT_EXPAND,
	EVAS_HINT_EXPAND);
	elm_object_content_set(ad->conform, ad->label);

	/* Show window after base gui is set up */
	evas_object_show(ad->win);
}
int ret, i;
int ret = 0;
bool __bt_gatt_client_foreach_desc_cb(int total, int index,
		bt_gatt_h desc_handle, void *data) {
	char *uuid = NULL;

	bt_gatt_get_uuid(desc_handle, &uuid);

	dlog_print(DLOG_INFO, LOG_TAG, "\t\t[%d / %d] uuid : (%s)", index, total,
			uuid);

	//  g_free(uuid);

	return true;
}
bool __bt_gatt_client_foreach_chr_cb(int total, int index, bt_gatt_h chr_handle,
		void *data) {
	int ret;
	char *uuid = NULL;

	bt_gatt_get_uuid(chr_handle, &uuid);

	dlog_print(DLOG_INFO, LOG_TAG, "\t[%d / %d] uuid : (%s)", index, total,
			uuid);

	//g_free(uuid);

	ret = bt_gatt_characteristic_foreach_descriptors(chr_handle,
			__bt_gatt_client_foreach_desc_cb, NULL);
	if (ret != BT_ERROR_NONE)
		dlog_print(DLOG_INFO, LOG_TAG,
				"bt_gatt_characteristic_foreach_descriptors is failed : %d",
				ret);

	return true;
}
bool __bt_gatt_client_foreach_svc_cb(int total, int index, bt_gatt_h svc_handle,
		void *data) {
	int ret;
	char *uuid = NULL;

	bt_gatt_get_uuid(svc_handle, &uuid);
	dlog_print(DLOG_INFO, LOG_TAG, "[%d / %d] uuid : (%s)", index, total, uuid);

	// g_free(uuid);

	ret = bt_gatt_service_foreach_characteristics(svc_handle,
			__bt_gatt_client_foreach_chr_cb, NULL);
	if (ret != BT_ERROR_NONE) {
		dlog_print(DLOG_INFO, LOG_TAG,
				"bt_gatt_service_foreach_characteristics is failed : %d", ret);
	}

	return true;
}
void __bt_adapter_le_scan_result_cb(int result,
		bt_adapter_le_device_scan_result_info_s *info, void *user_data) {
	bt_adapter_le_packet_type_e pkt_type = BT_ADAPTER_LE_PACKET_ADVERTISING;

	if (info == NULL) {
		dlog_print(DLOG_INFO, LOG_TAG, "No discovery_info!");

		return;
	} else {
		dlog_print(DLOG_INFO, LOG_TAG, "some info found");

	}

	if (info->adv_data_len > 31 || info->scan_data_len > 31) {
		dlog_print(DLOG_INFO, LOG_TAG, "###################");
		//bt_adapter_le_stop_scan();
		dlog_print(DLOG_INFO, LOG_TAG, "###################");

		return;
	}

	for (i = 0; i < 2; i++) {
		char **uuids;
		char *device_name;
		int tx_power_level;
		bt_adapter_le_service_data_s *data_list;
		int appearance;
		int manufacturer_id;
		char *manufacturer_data;
		int manufacturer_data_len;
		int count;

		pkt_type += i;
		if (pkt_type
				== BT_ADAPTER_LE_PACKET_ADVERTISING&& info->adv_data == NULL)
			continue;
		if (pkt_type
				== BT_ADAPTER_LE_PACKET_SCAN_RESPONSE&& info->scan_data == NULL)
			break;

		if (bt_adapter_le_get_scan_result_service_uuids(info, pkt_type, &uuids,
				&count) == BT_ERROR_NONE) {
			int i;
			for (i = 0; i < count; i++) {
				dlog_print(DLOG_INFO, LOG_TAG, "UUID[%d] = %s", i + 1,
						uuids[i]);
				// g_free(uuids[i]);
			}
			//    g_free(uuids);
		}
		if (bt_adapter_le_get_scan_result_device_name(info, pkt_type,
				&device_name) == BT_ERROR_NONE) {
			dlog_print(DLOG_INFO, LOG_TAG, "Device name = %s", device_name);
			dlog_print(DLOG_INFO, LOG_TAG, "Addresse = %s",
					info->remote_address);
			char *addr = NULL;
			dlog_print(DLOG_INFO, LOG_TAG, "Comparing");
			if (strcmp(info->remote_address, "C9:D4:67:84:5C:E7") == 0) {
				dlog_print(DLOG_INFO, LOG_TAG, "Got our device");
				bt_adapter_le_stop_scan();
				ret = bt_gatt_connect("xx:xx:xx:xx:xx:xx", false);
				if (ret != BT_ERROR_NONE) {
					dlog_print(DLOG_INFO, LOG_TAG,
							"Failed to connect LE device.");
				} else {
					dlog_print(DLOG_INFO, LOG_TAG,
							"Connected to our LE device.");
					ret = bt_gatt_client_create("xx:xx:xx:xx:xx:xx", &client);
					if (ret == BT_ERROR_NONE) {
						dlog_print(DLOG_INFO, LOG_TAG, "Client created");
						ret = bt_gatt_client_get_remote_address(client, &addr);
						if (ret == BT_ERROR_NONE)
							dlog_print(DLOG_INFO, LOG_TAG, "Success");

						ret = bt_gatt_client_foreach_services(client,
								__bt_gatt_client_foreach_svc_cb, NULL);
						if (ret != BT_ERROR_NONE) {
							dlog_print(DLOG_INFO, LOG_TAG,
									"fail to read services");
						}
						char *svc_uuid = "0000180f-0000-1000-8000-00805f9b34fb"; // Battery service
						char *chr_uuid = "00002a19-0000-1000-8000-00805f9b34fb"; // Battery level
						char *desc_uuid = "058e3555-f52f-8f88-870d-67ce119e315c"; // Client characteristic configuration
						bt_gatt_h svc = NULL;
						bt_gatt_h chr = NULL;
						bt_gatt_h desc = NULL;

						ret = bt_gatt_client_get_service(client, svc_uuid,
								&svc);
						if (ret != BT_ERROR_NONE) {
							dlog_print(DLOG_INFO, LOG_TAG,
									"bt_gatt_client_get_service is failed : %d",
									ret);

						} else {
							dlog_print(DLOG_INFO, LOG_TAG,
									"bt_gatt_client_get_service is success ");
						}

						ret = bt_gatt_service_get_characteristic(svc, chr_uuid,
								&chr);
						if (ret != BT_ERROR_NONE) {
							dlog_print(DLOG_INFO, LOG_TAG,
									"bt_gatt_service_get_characteristic is failed : %d",
									ret);
						} else {
							dlog_print(DLOG_INFO, LOG_TAG,
									"bt_gatt_client_get_char is success :");
						}
						*svc_uuid = "058e0555-f52f-8f88-870d-67ce119e315c";
						ret = bt_gatt_service_get_characteristic(svc, chr_uuid,
								&chr);
						if (ret != BT_ERROR_NONE) {
							dlog_print(DLOG_INFO, LOG_TAG,
									"bt_gatt_service_get_characteristic is failed : %d",
									ret);

						} else {
							dlog_print(DLOG_INFO, LOG_TAG,
									"bt_gatt_client_getc is success");
						}
						ret = bt_gatt_characteristic_get_descriptor(chr,
								desc_uuid, &desc);
						if (ret != BT_ERROR_NONE) {
							dlog_print(DLOG_INFO, LOG_TAG,
									"bt_gatt_characteristic_get_descriptor is failed : %d",
									ret);

						} else {
							dlog_print(DLOG_INFO, LOG_TAG,
									"bt_gatt_characteristic_get_descriptor success");
						}

					}
				}
			}
			//  g_free(device_name);
		}
		if (bt_adapter_le_get_scan_result_tx_power_level(info, pkt_type,
				&tx_power_level) == BT_ERROR_NONE) {
			dlog_print(DLOG_INFO, LOG_TAG, "TX Power level = %d",
					tx_power_level);
		}
		if (bt_adapter_le_get_scan_result_service_solicitation_uuids(info,
				pkt_type, &uuids, &count) == BT_ERROR_NONE) {
			int i;
			for (i = 0; i < count; i++) {
				dlog_print(DLOG_INFO, LOG_TAG, "Solicitation UUID[%d] = %s",
						i + 1, uuids[i]);
				//   g_free(uuids[i]);
			}
			//   g_free(uuids);
		}
		if (bt_adapter_le_get_scan_result_service_data_list(info, pkt_type,
				&data_list, &count) == BT_ERROR_NONE) {
			int i;
			for (i = 0; i < count; i++)
				dlog_print(DLOG_INFO, LOG_TAG,
						"Service Data[%d] = [0x%2.2X%2.2X:0x%.2X...]", i + 1,
						data_list[i].service_uuid[0],
						data_list[i].service_uuid[1],
						data_list[i].service_data[0]);
			bt_adapter_le_free_service_data_list(data_list, count);
		}
		if (bt_adapter_le_get_scan_result_appearance(info, pkt_type,
				&appearance) == BT_ERROR_NONE) {
			dlog_print(DLOG_INFO, LOG_TAG, "Appearance = %d", appearance);
		}
		if (bt_adapter_le_get_scan_result_manufacturer_data(info, pkt_type,
				&manufacturer_id, &manufacturer_data, &manufacturer_data_len)
				== BT_ERROR_NONE) {
			dlog_print(DLOG_INFO, LOG_TAG,
					"Manufacturer data[ID:%.4X, 0x%.2X%.2X...(len:%d)]",
					manufacturer_id, manufacturer_data[0], manufacturer_data[1],
					manufacturer_data_len);
			//   g_free(manufacturer_data);
		}

	}
}

// Register for GATT connection callback
void __bt_gatt_connection_state_changed_cb(int result, bool connected,
		const char *remote_address, void *user_data) {
	dlog_print(DLOG_INFO, LOG_TAG, "LE state changed.....................");
	if (connected) {
		dlog_print(DLOG_INFO, LOG_TAG, "LE connected");
		ret = bt_gatt_client_foreach_services(client,
				__bt_gatt_client_foreach_svc_cb, NULL);
		if (ret != BT_ERROR_NONE) {
			dlog_print(DLOG_INFO, LOG_TAG, "fail");
		}

	} else
		dlog_print(DLOG_INFO, LOG_TAG, "LE disconnected");
}
int server_socket_fd = -1;
void socket_connection_state_changed(int result,
		bt_socket_connection_state_e connection_state,
		bt_socket_connection_s *connection, void *user_data) {
	dlog_print(DLOG_INFO, LOG_TAG, "LE connected socket");
	if (result != BT_ERROR_NONE) {
		dlog_print(DLOG_INFO, LOG_TAG,
				"[socket_connection_state_changed_cb] Failed. result =%d.",
				result);

		return;
	}

	if (connection_state == BT_SOCKET_CONNECTED) {
		dlog_print(DLOG_INFO, LOG_TAG, "Callback: Connected.");
		if (connection != NULL) {
			dlog_print(DLOG_INFO, LOG_TAG,
					"Callback: Socket of connection - %d.",
					connection->socket_fd);
			dlog_print(DLOG_INFO, LOG_TAG, "Callback: Role of connection - %d.",
					connection->local_role);
			dlog_print(DLOG_INFO, LOG_TAG,
					"Callback: Address of connection - %s.",
					connection->remote_address);
			// socket_fd is used for sending data and disconnecting a device
			server_socket_fd = connection->socket_fd;
		} else {
			dlog_print(DLOG_INFO, LOG_TAG, "Callback: No connection data");
		}
	} else {
		dlog_print(DLOG_INFO, LOG_TAG, "Callback: Disconnected.");
		if (connection != NULL) {
			dlog_print(DLOG_INFO, LOG_TAG,
					"Callback: Socket of disconnection - %d.",
					connection->socket_fd);
			dlog_print(DLOG_INFO, LOG_TAG,
					"Callback: Address of connection - %s.",
					connection->remote_address);
		} else {
			dlog_print(DLOG_INFO, LOG_TAG, "Callback: No connection data");
		}
	}
}
void __bt_gatt_client_read_complete_cb(int result, bt_gatt_h gatt_handle,
		void *data) {
	char *uuid = NULL;

	bt_gatt_get_uuid(gatt_handle, &uuid);

	dlog_print(DLOG_INFO, LOG_TAG, "Read %s for uuid : (%s)",
			result == BT_ERROR_NONE ? "Success" : "Fail", uuid);

	if (result != BT_ERROR_NONE)
		return;

	return;
}
/*Working 	ret = bt_socket_create_rfcomm(my_uuid, &server_socket_fd);*/

static bool app_create(void *data) {

	/* Hook to take necessary actions before main event loop starts
	 Initialize UI resources and application's data
	 If this function returns true, the main loop of application starts
	 If this function returns false, the application is terminated */
	appdata_s *ad = data;

	create_base_gui(ad);
	dlog_print(DLOG_INFO, LOG_TAG, "init bt");
	ret = bt_initialize();
	if (ret != BT_ERROR_NONE) {
		dlog_print(DLOG_INFO, LOG_TAG, "BT init succss.");
	}

	dlog_print(DLOG_INFO, LOG_TAG, "[bt_initialize]starting.");
	ret = bt_adapter_le_start_scan(__bt_adapter_le_scan_result_cb, NULL);
	if (ret != BT_ERROR_NONE) {
		dlog_print(DLOG_INFO, LOG_TAG, "[bt_adapter_le_start_scan] Failed.");
	}

	return true;
}

static void app_control(app_control_h app_control, void *data) {
	/* Handle the launch request. */
}

static void app_pause(void *data) {
	/* Take necessary actions when application becomes invisible. */
}

static void app_resume(void *data) {
	/* Take necessary actions when application becomes visible. */

}

static void app_terminate(void *data) {
	/* Release all resources. */
}

static void ui_app_lang_changed(app_event_info_h event_info, void *user_data) {
	/*APP_EVENT_LANGUAGE_CHANGED*/
	char *locale = NULL;
	system_settings_get_value_string(SYSTEM_SETTINGS_KEY_LOCALE_LANGUAGE,
			&locale);
	elm_language_set(locale);
	free(locale);
	return;
}

static void ui_app_orient_changed(app_event_info_h event_info, void *user_data) {
	/*APP_EVENT_DEVICE_ORIENTATION_CHANGED*/
	return;
}

static void ui_app_region_changed(app_event_info_h event_info, void *user_data) {
	/*APP_EVENT_REGION_FORMAT_CHANGED*/
}

static void ui_app_low_battery(app_event_info_h event_info, void *user_data) {
	/*APP_EVENT_LOW_BATTERY*/
}

static void ui_app_low_memory(app_event_info_h event_info, void *user_data) {
	/*APP_EVENT_LOW_MEMORY*/
}

int main(int argc, char *argv[]) {
	appdata_s ad = { 0, };
	int ret = 0;

	ui_app_lifecycle_callback_s event_callback = { 0, };
	app_event_handler_h handlers[5] = { NULL, };

	event_callback.create = app_create;
	event_callback.terminate = app_terminate;
	event_callback.pause = app_pause;
	event_callback.resume = app_resume;
	event_callback.app_control = app_control;
	dlog_print(DLOG_INFO, LOG_TAG,
			"ggggggggggggggggggggggggggggggggggggggggggg");
	ret = bt_gatt_set_connection_state_changed_cb(
			__bt_gatt_connection_state_changed_cb, NULL);
	if (ret != BT_ERROR_NONE) {
		dlog_print(DLOG_INFO, LOG_TAG,
				"[bt_socket_set_connection_state_changed_cb] failed.");

	}
	ui_app_add_event_handler(&handlers[APP_EVENT_LOW_BATTERY],
			APP_EVENT_LOW_BATTERY, ui_app_low_battery, &ad);
	ui_app_add_event_handler(&handlers[APP_EVENT_LOW_MEMORY],
			APP_EVENT_LOW_MEMORY, ui_app_low_memory, &ad);
	ui_app_add_event_handler(&handlers[APP_EVENT_DEVICE_ORIENTATION_CHANGED],
			APP_EVENT_DEVICE_ORIENTATION_CHANGED, ui_app_orient_changed, &ad);
	ui_app_add_event_handler(&handlers[APP_EVENT_LANGUAGE_CHANGED],
			APP_EVENT_LANGUAGE_CHANGED, ui_app_lang_changed, &ad);
	ui_app_add_event_handler(&handlers[APP_EVENT_REGION_FORMAT_CHANGED],
			APP_EVENT_REGION_FORMAT_CHANGED, ui_app_region_changed, &ad);
	ui_app_remove_event_handler(handlers[APP_EVENT_LOW_MEMORY]);

	ret = ui_app_main(argc, argv, &event_callback, &ad);
	if (ret != APP_ERROR_NONE) {
		dlog_print(DLOG_INFO, LOG_TAG, "app_main() is failed. err = %d", ret);
	}

	return ret;
}

 

Shraddha Shravagi
01-05 10:43:10.460 : ERROR / PKGMGR_SERVER ( 5868 : 5868 ) : pkgmgr-server.c: main(2126) > package manager server start 01-05 10:43:10.560 : ERROR / PKGMGR_SERVER ( 5868 : 5868 ) : pkgmgr-server.c: req_cb(686) > req_id=[org.example.basicnativeapplication_1261304550], req_type=[12], pkg_type=[rpm], pkgid=[org.example.basicnativeapplication], args=[], cookie=[], backend_flag=[0] 01-05 10:43:10.575 : ERROR / PKGMGR ( 5866 : 5866 ) : pkgmgr.c: __check_sync_process(842) > file is can not remove[/tmp/org.example.basicnativeapplication, -1] 01-05 10:43:10.585 : ERROR / PKGMGR_SERVER ( 5869 : 5869 ) : pkgmgr-server.c: queue_job(1954) > KILL/CHECK APP, pkgid=[org.example.basicnativeapplication] 01-05 10:43:10.625 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:10.625 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:10.670 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __request_handler(639) > __request_handler: 14 01-05 10:43:10.680 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __send_result_to_client(83) > __send_result_to_client, pid: -1 01-05 10:43:10.690 : ERROR / PKGMGR_SERVER ( 5869 : 5869 ) : pkgmgr-server.c: queue_job(1976) > KILL/CHECK_APP end. 01-05 10:43:10.710 : ERROR / PKGMGR_SERVER ( 5868 : 5868 ) : pkgmgr-server.c: sighandler(445) > child NORMAL exit [5869] 01-05 10:43:10.825 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:10.825 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:11.030 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:11.030 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:11.055 : INFO / watchface-viewer ( 752 : 752 ) : viewer-image-file-loader.cpp: OnImageLoadingDoneIdlerCb(442) > ImagesLoadingDoneSignal().Emit(); 01-05 10:43:11.225 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:11.225 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:11.420 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:11.420 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:11.625 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:11.625 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:11.820 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:11.820 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:12.020 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:12.020 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:12.030 : INFO / watchface-viewer ( 752 : 752 ) : viewer-image-file-loader.cpp: OnImageLoadingDoneIdlerCb(442) > ImagesLoadingDoneSignal().Emit(); 01-05 10:43:12.225 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:12.225 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:12.420 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:12.420 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:12.620 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:12.620 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:12.745 : INFO / GESTURE ( 139 : 139 ) : gesture.c: GestureRecognize(2947) > disable_home_back_gesture=1, disable_apps_back_gesture=0, disable back key!!! 01-05 10:43:12.750 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.750 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(279) ev->cur.canvas.y(211) 01-05 10:43:12.750 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.750 : ERROR / EFL ( 712 : 712 ) : evas_main<712> evas_events.c:994 evas_event_feed_mouse_down() ButtonEvent:down time=842889 button=1 downs=1 01-05 10:43:12.755 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.755 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(263) ev->cur.canvas.y(213) 01-05 10:43:12.755 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.765 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.765 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(240) ev->cur.canvas.y(213) 01-05 10:43:12.765 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.765 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:4248 _elm_scroll_mouse_move_event_cb() [DDO] animator 01-05 10:43:12.765 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3352 _elm_scroll_post_event_move() [DDO] obj(45bb8750), type(elm_scroller) 01-05 10:43:12.765 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3353 _elm_scroll_post_event_move() [DDO] hold_parent(0) 01-05 10:43:12.765 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3381 _elm_scroll_post_event_move() [DDO] elm_widget_drag_lock_x_set : obj(45bb8750), type(elm_scroller) 01-05 10:43:12.780 : WARN / W_HOME ( 712 : 712 ) : home_navigation.c: _is_rightedge(188) > (360 360) not right edge: 0 0 0x45c09520 -> 360 0 0x46d89ae0 01-05 10:43:12.785 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _home_scroll_cb(564) > scroll,start 01-05 10:43:12.785 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.785 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(218) ev->cur.canvas.y(213) 01-05 10:43:12.785 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.790 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:43:12.790 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:43:12.790 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _clock_view_obscured_cb(621) > state: 1 -> 0 01-05 10:43:12.790 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 1, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:12.790 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.790 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.795 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4475) > [BackGestureSetProperty] atom=_E_MOVE_W_HOME_CLOCK_STATE, value=0, No clock display 01-05 10:43:12.805 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.805 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(200) ev->cur.canvas.y(213) 01-05 10:43:12.805 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.805 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.805 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(179) ev->cur.canvas.y(210) 01-05 10:43:12.805 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.805 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:43:12.805 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:43:12.810 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.810 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.815 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:12.815 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:12.815 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.815 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(157) ev->cur.canvas.y(207) 01-05 10:43:12.815 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.815 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:43:12.815 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:43:12.815 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.815 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.830 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.830 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(138) ev->cur.canvas.y(207) 01-05 10:43:12.830 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.830 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:43:12.830 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:43:12.835 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.835 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.845 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.845 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(119) ev->cur.canvas.y(205) 01-05 10:43:12.845 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.845 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.845 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(97) ev->cur.canvas.y(201) 01-05 10:43:12.845 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.850 : WARN / W_HOME ( 712 : 712 ) : index.c: index_show(299) > is_paused:0 show VI:1 visibility:0 vi:(nil) 01-05 10:43:12.850 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:43:12.850 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:43:12.850 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.850 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.860 : ERROR / PKGMGR_SERVER ( 5868 : 5868 ) : pkgmgr-server.c: exit_server(1338) > exit_server Start [backend_status=1, queue_status=1] 01-05 10:43:12.860 : ERROR / PKGMGR_SERVER ( 5868 : 5868 ) : pkgmgr-server.c: main(2180) > package manager server terminated. 01-05 10:43:12.865 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.865 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(79) ev->cur.canvas.y(195) 01-05 10:43:12.865 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.865 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.865 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(70) ev->cur.canvas.y(192) 01-05 10:43:12.865 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.870 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:43:12.870 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:43:12.870 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.870 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.885 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.885 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(59) ev->cur.canvas.y(192) 01-05 10:43:12.885 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.885 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:43:12.885 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:43:12.890 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.890 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.900 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:12.900 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(50) ev->cur.canvas.y(191) 01-05 10:43:12.900 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:12.900 : ERROR / EFL ( 712 : 712 ) : evas_main<712> evas_events.c:1258 evas_event_feed_mouse_up() ButtonEvent:up time=843037 button=1 downs=0 01-05 10:43:12.900 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:2277 _elm_scroll_post_event_up() [DDO] lock set false. : obj(45bb8750), type(elm_scroller) 01-05 10:43:12.905 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.905 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.915 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.915 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.930 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.930 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.950 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.950 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.965 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.965 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:12.980 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:12.980 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:13.000 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:13.000 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:13.015 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:13.015 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:13.015 : INFO / watchface-viewer ( 752 : 752 ) : viewer-image-file-loader.cpp: OnImageLoadingDoneIdlerCb(442) > ImagesLoadingDoneSignal().Emit(); 01-05 10:43:13.020 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:13.020 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:13.035 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:13.040 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:13.045 : WARN / wnotib ( 712 : 712 ) : w-notification-board-noti-manager.c: wnotib_noti_manager_notiboard_vi_rest_time_cb(1596) > No postponed update. 01-05 10:43:13.045 : INFO / efl-extension ( 712 : 712 ) : efl_extension_circle_object_scroller.c: _eext_circle_object_scroller_scroll_animatioin_stop_cb(501) > [0x45bb8750 : elm_scroller] CurrentPage(2) 01-05 10:43:13.065 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __widget_pause(998) > widget_pause 01-05 10:43:13.065 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppPause(717) > 01-05 10:43:13.065 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:13.065 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:13.065 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:13.065 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:13.065 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:13.070 : INFO / watchface-viewer ( 752 : 752 ) : viewer-part-resource-evas.cpp: StopColonAnimation(1508) > 01-05 10:43:13.070 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:13.070 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:13.070 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:13.170 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _home_scroll_cb(564) > scroll,done 01-05 10:43:13.550 : WARN / W_HOME ( 712 : 712 ) : index.c: index_hide(337) > hide VI:1 visibility:1 vi:(nil) 01-05 10:43:15.245 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_context_handler(1173) > _signal_context_handler: type: 0, state: 3 01-05 10:43:15.245 : INFO / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_context_handler(1190) > Call the time_tick_cb 01-05 10:43:15.245 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:15.245 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:15.245 : INFO / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(756) > set force update!! 01-05 10:43:15.245 : INFO / watchface-viewer ( 752 : 752 ) : viewer-image-file-loader.cpp: OnImageLoadingDoneIdlerCb(442) > ImagesLoadingDoneSignal().Emit(); 01-05 10:43:15.285 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1111) > signal_lcd_status_signal: LCDOff 01-05 10:43:15.300 : WARN / W_HOME ( 712 : 712 ) : dbus.c: _dbus_message_recv_cb(204) > LCD off 01-05 10:43:15.300 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_del(151) > timer del 01-05 10:43:15.300 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_enable(133) > 1 01-05 10:43:15.300 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _lcd_off_cb(699) > lcd state: 0 01-05 10:43:15.300 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:1 win_state:0(1) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:15.300 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(333) > appcore paused manually 01-05 10:43:15.300 : WARN / W_HOME ( 712 : 712 ) : main.c: home_appcore_pause(717) > Home Appcore Paused 01-05 10:43:15.300 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _app_pause_cb(372) > state: 1 -> 2 01-05 10:43:15.300 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:0(1) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:15.300 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:0, app_state:2 win_state:0(1) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:15.300 : WARN / W_HOME ( 712 : 712 ) : main.c: home_pause(751) > clock/widget paused 01-05 10:43:15.315 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:2 win_state:0(1) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:15.315 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:15.315 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:15.315 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:15.315 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnCheckRemotePort(115) > _MessagePortStub::OnCheckRemotePort. 01-05 10:43:15.315 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(207) > _MessagePortService::CheckRemotePort 01-05 10:43:15.315 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:15.315 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(220) > Check a remote message port: [com.samsung.w-music-player.music-control-service:music-control-service-request-message-port] 01-05 10:43:15.315 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:15.320 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:15.320 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:15.320 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:15.325 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnSendMessage(126) > MessagePort OnSendMessage 01-05 10:43:15.325 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(291) > _MessagePortService::SendMessage 01-05 10:43:15.325 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:15.325 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(299) > Sends a message to a remote message port [com.samsung.w-music-player.music-control-service:music-control-service-request-message-port] 01-05 10:43:15.325 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: SendMessage(138) > MessagePort SendMessage 01-05 10:43:15.325 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: SendResponse(884) > _MessagePortIpcServer::SendResponse 01-05 10:43:15.325 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:15.325 : ERROR / CAPI_APPFW_APP_CONTROL ( 827 : 827 ) : app_control.c: app_control_error(133) > [app_control_get_caller] INVALID_PARAMETER(0xffffffea) : invalid app_control handle type 01-05 10:43:15.325 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-service.c: _music_control_service_pasre_request(405) > [TID:827] value = [false] 01-05 10:43:15.345 : INFO / SCONTEXT-LIB ( 701 : 701 ) : scontext.c: remove_changed_cb(145) > UnSet Changed CB: 42 01-05 10:43:15.345 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1470) > [_on_lcd_signal_receive_cb:1470] _on_lcd_signal_receive_cb, 1470, Pre LCD off by [gesture] 01-05 10:43:15.345 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _pre_lcd_off(1254) > [_pre_lcd_off:1254] Will LCD OFF as wake_up_setting[1] 01-05 10:43:15.345 : ERROR / STARTER ( 688 : 688 ) : scontext_util.c: scontext_util_handle_lock_state(64) > [scontext_util_handle_lock_state:64] wear state[0],bPossible [0] 01-05 10:43:15.345 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _check_reserved_popup_status(260) > [_check_reserved_popup_status:260] Current reserved apps status : 0 01-05 10:43:15.345 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _check_reserved_apps_status(296) > [_check_reserved_apps_status:296] Current reserved apps status : 0 01-05 10:43:15.625 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-consumer-control.c: _music_control_consumer_display_state_changed_cb(435) > [TID:827] [MUSIC_PLAYER_EVENT]DISPLAY_STATE_SCREEN_OFF 01-05 10:43:15.635 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1481) > [_on_lcd_signal_receive_cb:1481] _on_lcd_signal_receive_cb, 1481, Post LCD off by [gesture] 01-05 10:43:15.635 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1380) > [_post_lcd_off:1380] LCD OFF as reserved app[(null)] alpm mode[0] 01-05 10:43:15.635 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1387) > [_post_lcd_off:1387] Current reserved apps status : 0 01-05 10:43:15.635 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1405) > [_post_lcd_off:1405] raise homescreen after 10 sec. home_visible[0] 01-05 10:43:15.645 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: PAUSE State: RUNNING 01-05 10:43:15.645 : INFO / CAPI_APPFW_APPLICATION ( 712 : 712 ) : app_main.c: app_appcore_pause(202) > app_appcore_pause 01-05 10:43:15.645 : WARN / W_HOME ( 712 : 712 ) : main.c: _appcore_pause_cb(690) > appcore pause 01-05 10:43:15.645 : ERROR / W_HOME ( 712 : 712 ) : main.c: _pause_cb(668) > paused already 01-05 10:43:15.680 : INFO / SHealth_Common ( 1050 : 1050 ) : SystemUtil.cpp: OnDeviceStatusChanged(676) > lcdState:3 01-05 10:43:15.680 : INFO / SHealth_Service ( 1050 : 1050 ) : SHealthServiceController.cpp: OnSystemUtilLcdStateChanged(671) > ### 01-05 10:43:15.685 : WARN / ALARM_MANAGER ( 688 : 688 ) : alarm-lib.c: alarmmgr_add_alarm_withcb(1157) > trigger_at_time(10), start(5-1-2016, 10:43:26), repeat(1), interval(10), type(-1073741822) 01-05 10:43:15.690 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1206) > [SVOICE] Wake up Disable start 01-05 10:43:15.775 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager-schedule.c: _alarm_next_duetime(497) > alarm_id: 1472123664, next duetime: 1451970806 01-05 10:43:15.775 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_add_to_list(377) > [alarm-server]: After add alarm_id(1472123664) 01-05 10:43:15.775 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1209) > [SVOICE] Wake up Disable end. (ret: 0x0) 01-05 10:43:15.775 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_create(943) > [alarm-server]:alarm_context.c_due_time(1452009276), due_time(1451970806) 01-05 10:43:15.775 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(229) > [alarm-server]ALARM_CLEAR ioctl is successfully done. 01-05 10:43:15.775 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(236) > Setted RTC Alarm date/time is 5-1-2016, 05:13:26 (UTC). 01-05 10:43:15.775 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(251) > [alarm-server]RTC ALARM_SET ioctl is successfully done. 01-05 10:43:15.780 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_wakeup_enable] ERROR_NONE (0x00000000) 01-05 10:43:15.995 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: MEM_FLUSH State: PAUSED 01-05 10:43:19.552 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_cb_wearonoff_monitor(18974) > wear_monitor_status update[0] = 1 -> 2 01-05 10:43:19.552 : ERROR / WMS ( 504 : 504 ) : wms_msg_broker.c: wms_msg_broker_send(1636) > 01-05 10:43:19.552 : ERROR / WMS ( 504 : 504 ) : ========== 01-05 10:43:19.552 : ERROR / WMS ( 504 : 504 ) : ##WMS SEND : mgr_gear_wear_onoff_req 01-05 10:43:19.552 : ERROR / WMS ( 504 : 504 ) : ========== 01-05 10:43:19.552 : ERROR / WMS ( 504 : 504 ) : wms_msg_broker.c: wms_msg_broker_send(1639) > No service connection to host. Skipping this message. 01-05 10:43:22.720 : INFO / RESOURCED ( 644 : 644 ) : heart-battery.c: heart_battery_add_capacity(1174) > [heart_battery_add_capacity,1174] 74 -> 73 1451970802 332 332204 01-05 10:43:22.720 : INFO / RESOURCED ( 644 : 644 ) : heart-battery.c: heart_battery_calculate_prediction(1144) > [heart_battery_calculate_prediction,1144] TimeToEmpty: 73 348 204 423 01-05 10:43:22.720 : INFO / RESOURCED ( 644 : 644 ) : heart-battery.c: heart_battery_calculate_prediction(1144) > [heart_battery_calculate_prediction,1144] TimeToEmpty: 73 0 0 1365 01-05 10:43:22.720 : INFO / RESOURCED ( 644 : 644 ) : heart-battery.c: heart_battery_calculate_prediction(1144) > [heart_battery_calculate_prediction,1144] TimeToEmpty: 73 1651 550 2009 01-05 10:43:22.720 : INFO / RESOURCED ( 644 : 644 ) : heart-battery.c: heart_battery_calculate_prediction(1144) > [heart_battery_calculate_prediction,1144] TimeToEmpty: 73 795 5 967 01-05 10:43:22.720 : INFO / RESOURCED ( 644 : 644 ) : heart-battery.c: heart_battery_calculate_prediction(1144) > [heart_battery_calculate_prediction,1144] TimeToEmpty: 73 628 7 764 01-05 10:43:23.000 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: MEM_FLUSH State: PAUSED 01-05 10:43:25.995 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_handler_idle(1362) > Lock the display not to enter LCD OFF 01-05 10:43:26.010 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __display_lock_state(1690) > Lock LCD OFF is successfully done 01-05 10:43:26.035 : ERROR / RESOURCED ( 644 : 644 ) : freezer-process.c: freezer_process_pid_set(146) > [freezer_process_pid_set,146] Cant find process info for 688 01-05 10:43:26.040 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_expired(1324) > alarm_id[1472123664] is expired. 01-05 10:43:26.040 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager-schedule.c: _alarm_next_duetime(497) > alarm_id: 1472123664, next duetime: 1451970816 01-05 10:43:26.040 : WARN / ALARM_MANAGER ( 688 : 688 ) : alarm-lib.c: __handle_expiry_method_call(154) > [alarm-lib] : Alarm expired for [ALARM.astarter] : Alarm id [1472123664] 01-05 10:43:26.040 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: __starter_clock_mgr_homescreen_alarm_cb(855) > [__starter_clock_mgr_homescreen_alarm_cb:855] homescreen alarm timer expired [1472123664] 01-05 10:43:26.045 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __request_handler(639) > __request_handler: 0 01-05 10:43:26.045 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: _start_app(1658) > caller pid : 688 01-05 10:43:26.055 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __nofork_processing(1137) > __nofork_processing, cmd: 0, pid: 712 01-05 10:43:26.055 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: RESET State: PAUSED 01-05 10:43:26.055 : INFO / CAPI_APPFW_APPLICATION ( 712 : 712 ) : app_main.c: app_appcore_reset(245) > app_appcore_reset 01-05 10:43:26.055 : WARN / W_HOME ( 712 : 712 ) : main.c: _app_control(1713) > Service value : show_clock 01-05 10:43:26.055 : WARN / W_HOME ( 712 : 712 ) : main.c: _app_control(1749) > Show clock operation 01-05 10:43:26.055 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(228) > clock show 01-05 10:43:26.060 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(243) > home raise 01-05 10:43:26.060 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __reply_handler(908) > listen fd(29) , send fd(28), pid(712), cmd(0) 01-05 10:43:26.065 : ERROR / W_HOME ( 712 : 712 ) : gesture.c: gesture_win_aux_set(396) > wm.policy.win.do.not.use.deiconify.approve:-1 01-05 10:43:26.070 : WARN / W_HOME ( 712 : 712 ) : dbus_util.c: home_dbus_home_raise_signal_send(260) > Sending HOME RAISE signal, result:0 01-05 10:43:26.070 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(246) > home raise done 01-05 10:43:26.070 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(253) > show clock 01-05 10:43:26.070 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(229) > [alarm-server]ALARM_CLEAR ioctl is successfully done. 01-05 10:43:26.070 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(236) > Setted RTC Alarm date/time is 5-1-2016, 05:13:36 (UTC). 01-05 10:43:26.075 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(251) > [alarm-server]RTC ALARM_SET ioctl is successfully done. 01-05 10:43:26.075 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_handler_idle(1388) > Unlock the display from LCD OFF 01-05 10:43:26.075 : WARN / W_HOME ( 712 : 712 ) : scroller.c: _get_index_in_list(1902) > page:0x45c09520 idx:1 total10 exist:1 01-05 10:43:26.075 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:1270 _elm_scroll_origin_reverse_set() [DDO] obj(45bb8750), origin_x(0), origin_y(0) 01-05 10:43:26.080 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _clock_view_visible_cb(608) > state: 0 -> 1 01-05 10:43:26.080 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:0(1) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:26.090 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:26.090 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:26.090 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(479) > Legacy lifecycle: 1 01-05 10:43:26.095 : ERROR / E17 ( 418 : 418 ) : e_manager.c: _e_manager_cb_client_message(1506) > ACTIVE REQUEST(0x02400003) 01-05 10:43:26.100 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __display_unlock_state(1733) > Unlock LCD OFF is successfully done 01-05 10:43:26.100 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_remove_from_list(456) > [alarm-server]:Remove alarm id(1472123664) 01-05 10:43:26.100 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(229) > [alarm-server]ALARM_CLEAR ioctl is successfully done. 01-05 10:43:26.100 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(236) > Setted RTC Alarm date/time is 5-1-2016, 15:54:36 (UTC). 01-05 10:43:26.100 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(251) > [alarm-server]RTC ALARM_SET ioctl is successfully done. 01-05 10:43:26.100 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: alarm_manager_alarm_delete(2207) > alarm_id[1472123664] is removed. 01-05 10:43:27.060 : WARN / AUL_AMD ( 510 : 510 ) : amd_key.c: _key_ungrab(254) > fail(-1) to ungrab key(XF86Stop) 01-05 10:43:27.060 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __grab_timeout_handler(1361) > back key ungrab error 01-05 10:43:28.104 : ERROR / PKGMGR ( 6022 : 6022 ) : pkgmgr.c: pkgmgr_client_reinstall(1823) > reinstall pkg start. 01-05 10:43:28.254 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: main(2126) > package manager server start 01-05 10:43:28.329 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: req_cb(686) > req_id=[org.example.basicnativeapplication_1279132066], req_type=[1], pkg_type=[rpm], pkgid=[org.example.basicnativeapplication], args=[/usr/etc/package-manager/backend/rpm '-k' 'org.example.basicnativeapplication_1279132066' '-r' 'org.example.basicnativeapplication'], cookie=[p/qDVwwX5JzZKrPzfRI+DORjXR8=], backend_flag=[0] 01-05 10:43:28.329 : ERROR / PKGMGR ( 6024 : 6024 ) : pkgmgr-internal.c: _get_type_from_zip(733) > can not access to [org.example.basicnativeapplication] 01-05 10:43:28.329 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: __get_type_from_msg(364) > pkgtype is null for org.example.basicnativeapplication 01-05 10:43:28.339 : ERROR / PKGMGR ( 6022 : 6022 ) : pkgmgr.c: pkgmgr_client_reinstall(1935) > reinstall pkg finish, ret=[60220002] 01-05 10:43:28.339 : ERROR / PKGMGR_SERVER ( 6025 : 6025 ) : pkgmgr-server.c: queue_job(1820) > INSTALL start, pkg path=[org.example.basicnativeapplication] 01-05 10:43:28.489 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_cb_log_package(4448) > package [_________] callback : [UPDATE, STARTED] 01-05 10:43:28.494 : WARN / AUL_AMD ( 510 : 510 ) : amd_appinfo.c: __amd_pkgmgrinfo_status_cb(783) > __amd_pkgmgrinfo_start_handler 01-05 10:43:28.514 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_cb_log_package(4448) > package [_________] callback : [UPDATE, PROCESSING] 01-05 10:43:28.534 : WARN / W_HOME ( 712 : 712 ) : clock_event.c: _pkgmgr_event_cb(209) > Pkg:org.example.basicnativeapplication is being updateded:0 01-05 10:43:32.846 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_context_handler(1173) > _signal_context_handler: type: 0, state: 3 01-05 10:43:32.846 : INFO / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_context_handler(1190) > Call the time_tick_cb 01-05 10:43:32.851 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:32.851 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:32.851 : INFO / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(756) > set force update!! 01-05 10:43:32.851 : INFO / watchface-viewer ( 752 : 752 ) : viewer-image-file-loader.cpp: OnImageLoadingDoneIdlerCb(442) > ImagesLoadingDoneSignal().Emit(); 01-05 10:43:32.876 : WARN / W_HOME ( 712 : 712 ) : dbus.c: _dbus_message_recv_cb(169) > gesture:wristup 01-05 10:43:32.876 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_schedule(211) > schedule, manual render 01-05 10:43:32.891 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1111) > signal_lcd_status_signal: LCDOn 01-05 10:43:32.891 : INFO / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1130) > Call the time_tick_cb 01-05 10:43:32.891 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:32.891 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:32.891 : INFO / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(756) > set force update!! 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : dbus.c: _dbus_message_recv_cb(186) > LCD on 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_set(161) > timer set 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_del(151) > timer del 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _apps_status_get(123) > apps status:0 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _lcd_on_cb(295) > move_to_clock:1 clock_visible:1 info->offtime:17605 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_schedule(211) > schedule, manual render 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _lcd_on_cb(691) > lcd state: 1 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(342) > appcore resumed manually 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : main.c: home_appcore_resume(708) > Home Appcore Resumed 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _app_resume_cb(355) > state: 2 -> 1 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:0, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : main.c: home_resume(729) > journal_appcore_app_fully_loaded called 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : main.c: home_resume(733) > clock/widget resumed 01-05 10:43:32.896 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:32.896 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4470) > [BackGestureSetProperty] atom=_E_MOVE_W_HOME_CLOCK_STATE, value=1, Clock display 01-05 10:43:32.901 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1448) > [_on_lcd_signal_receive_cb:1448] _on_lcd_signal_receive_cb, 1448, Pre LCD on by [gesture] after screen off time [17605]ms 01-05 10:43:32.901 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _pre_lcd_on(1174) > [_pre_lcd_on:1174] Will LCD ON as reserved app[(null)] alpm mode[0] 01-05 10:43:32.906 : INFO / SCONTEXT-LIB ( 701 : 701 ) : scontext.c: context_add_changed_cb(211) > [SUCCESS] Set Changed CB: 42 (req_id=26) 01-05 10:43:32.911 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: RESUME State: RUNNING 01-05 10:43:32.911 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __widget_resume(1009) > widget_resume 01-05 10:43:32.911 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppResume(725) > 01-05 10:43:32.911 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:32.911 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:32.946 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_set_param(1238) > [SVOICE] set param [keyword length] : 0 01-05 10:43:32.991 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-consumer-control.c: _music_control_consumer_display_state_changed_cb(439) > [TID:827] [MUSIC_PLAYER_EVENT]DISPLAY_STATE_NORMAL 01-05 10:43:32.991 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_cb_log_package(4448) > package [_________] callback : [UPDATE, PROCESSING] 01-05 10:43:33.006 : INFO / GESTURE ( 139 : 139 ) : gesture.c: GestureRecognize(2947) > disable_home_back_gesture=1, disable_apps_back_gesture=0, disable back key!!! 01-05 10:43:33.011 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:33.011 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(232) ev->cur.canvas.y(155) 01-05 10:43:33.011 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:33.011 : ERROR / EFL ( 712 : 712 ) : evas_main<712> evas_events.c:994 evas_event_feed_mouse_down() ButtonEvent:down time=857743 button=1 downs=1 01-05 10:43:33.016 : ERROR / PKGMGR_CERT ( 6025 : 6025 ) : pkgmgrinfo_certinfo.c: pkgmgrinfo_save_certinfo(426) > Transaction Begin 01-05 10:43:33.016 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:33.021 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(232) ev->cur.canvas.y(152) 01-05 10:43:33.021 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:33.031 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:33.031 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(228) ev->cur.canvas.y(150) 01-05 10:43:33.031 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:33.041 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:33.041 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(224) ev->cur.canvas.y(135) 01-05 10:43:33.041 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:33.041 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1459) > [_on_lcd_signal_receive_cb:1459] _on_lcd_signal_receive_cb, 1459, Post LCD on by [gesture] 01-05 10:43:33.041 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_on(1220) > [_post_lcd_on:1220] LCD ON as reserved app[(null)] alpm mode[0] 01-05 10:43:33.051 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:33.051 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(215) ev->cur.canvas.y(131) 01-05 10:43:33.056 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:33.061 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:33.061 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(196) ev->cur.canvas.y(131) 01-05 10:43:33.061 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:33.061 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:4248 _elm_scroll_mouse_move_event_cb() [DDO] animator 01-05 10:43:33.066 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3352 _elm_scroll_post_event_move() [DDO] obj(45bb8750), type(elm_scroller) 01-05 10:43:33.066 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3353 _elm_scroll_post_event_move() [DDO] hold_parent(0) 01-05 10:43:33.066 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3381 _elm_scroll_post_event_move() [DDO] elm_widget_drag_lock_x_set : obj(45bb8750), type(elm_scroller) 01-05 10:43:33.081 : ERROR / PKGMGR_CERT ( 6025 : 6025 ) : pkgmgrinfo_certinfo.c: pkgmgrinfo_save_certinfo(495) > Id:Count = 1 85 01-05 10:43:33.086 : ERROR / PKGMGR_CERT ( 6025 : 6025 ) : pkgmgrinfo_certinfo.c: pkgmgrinfo_save_certinfo(495) > Id:Count = 2 85 01-05 10:43:33.091 : ERROR / PKGMGR_CERT ( 6025 : 6025 ) : pkgmgrinfo_certinfo.c: pkgmgrinfo_save_certinfo(495) > Id:Count = 16 1 01-05 10:43:33.091 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:33.091 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:33.091 : INFO / watchface-viewer ( 752 : 752 ) : viewer-part-resource-evas.cpp: Notify(975) > skip first tick after resume!! 01-05 10:43:33.091 : INFO / watchface-viewer ( 752 : 752 ) : viewer-image-file-loader.cpp: OnImageLoadingDoneIdlerCb(442) > ImagesLoadingDoneSignal().Emit(); 01-05 10:43:33.091 : ERROR / PKGMGR_CERT ( 6025 : 6025 ) : pkgmgrinfo_certinfo.c: pkgmgrinfo_save_certinfo(495) > Id:Count = 17 1 01-05 10:43:33.091 : ERROR / PKGMGR_CERT ( 6025 : 6025 ) : pkgmgrinfo_certinfo.c: pkgmgrinfo_save_certinfo(495) > Id:Count = 18 1 01-05 10:43:33.101 : ERROR / PKGMGR_CERT ( 6025 : 6025 ) : pkgmgrinfo_certinfo.c: pkgmgrinfo_save_certinfo(495) > Id:Count = 19 1 01-05 10:43:33.111 : WARN / W_HOME ( 712 : 712 ) : home_navigation.c: _is_rightedge(188) > (360 360) not right edge: 0 0 0x45c09520 -> 360 0 0x46d89ae0 01-05 10:43:33.111 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _home_scroll_cb(564) > scroll,start 01-05 10:43:33.111 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:33.116 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(173) ev->cur.canvas.y(126) 01-05 10:43:33.116 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:33.116 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:33.116 : INFO / SHealth_Common ( 1050 : 1050 ) : SystemUtil.cpp: OnDeviceStatusChanged(676) > lcdState:1 01-05 10:43:33.116 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(146) ev->cur.canvas.y(121) 01-05 10:43:33.116 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:33.116 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:33.116 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(114) ev->cur.canvas.y(119) 01-05 10:43:33.116 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:33.121 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:43:33.121 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(78) ev->cur.canvas.y(119) 01-05 10:43:33.121 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:43:33.121 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_cb(140) > timeout callback expired 01-05 10:43:33.121 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_enable(133) > 0 01-05 10:43:33.121 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:43:33.121 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:43:33.121 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _clock_view_obscured_cb(621) > state: 1 -> 0 01-05 10:43:33.121 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 1, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:33.126 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:33.126 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:33.131 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4475) > [BackGestureSetProperty] atom=_E_MOVE_W_HOME_CLOCK_STATE, value=0, No clock display 01-05 10:43:33.146 : INFO / SHealth_Service ( 1050 : 1050 ) : SHealthServiceController.cpp: OnSystemUtilLcdStateChanged(671) > ### 01-05 10:43:33.146 : WARN / SHealth_Service ( 1050 : 1050 ) : ContextRestingHeartrateProxy.cpp: OnRestingHrUpdatedCB(303) > hrValue: 1008 01-05 10:43:33.161 : ERROR / EFL ( 712 : 712 ) : evas_main<712> evas_events.c:1258 evas_event_feed_mouse_up() ButtonEvent:up time=857851 button=1 downs=0 01-05 10:43:33.166 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:2277 _elm_scroll_post_event_up() [DDO] lock set false. : obj(45bb8750), type(elm_scroller) 01-05 10:43:33.166 : WARN / W_HOME ( 712 : 712 ) : index.c: index_show(299) > is_paused:0 show VI:1 visibility:0 vi:(nil) 01-05 10:43:33.166 : ERROR / SHealth_Service ( 1050 : 1050 ) : RestingHeartrateController.cpp: OnAutoHrDetected(83) > invalid parameter 01-05 10:43:33.171 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:33.171 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:33.176 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_set_param] ERROR_NONE (0x00000000) 01-05 10:43:33.181 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1206) > [SVOICE] Wake up Enable start 01-05 10:43:33.186 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:33.186 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:33.196 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_cb_wearonoff_monitor(18974) > wear_monitor_status update[0] = 2 -> 1 01-05 10:43:33.196 : ERROR / WMS ( 504 : 504 ) : wms_msg_broker.c: wms_msg_broker_send(1636) > 01-05 10:43:33.196 : ERROR / WMS ( 504 : 504 ) : ========== 01-05 10:43:33.196 : ERROR / WMS ( 504 : 504 ) : ##WMS SEND : mgr_gear_wear_onoff_req 01-05 10:43:33.196 : ERROR / WMS ( 504 : 504 ) : ========== 01-05 10:43:33.196 : ERROR / WMS ( 504 : 504 ) : wms_msg_broker.c: wms_msg_broker_send(1639) > No service connection to host. Skipping this message. 01-05 10:43:33.236 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:33.236 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:33.246 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:33.246 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:33.256 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(pedometer_inactive_period), check retry err: -21/(2/No such file or directory). 01-05 10:43:33.256 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(pedometer_inactive_period) step(-17825744) failed(2 / No such file or directory) 01-05 10:43:33.256 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:33.256 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:33.271 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : pedometer_inactive_period error 01-05 10:43:33.271 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(inactive_10min_precaution_millisec), check retry err: -21/(2/No such file or directory). 01-05 10:43:33.271 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:33.271 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:33.276 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(inactive_10min_precaution_millisec) step(-17825744) failed(2 / No such file or directory) 01-05 10:43:33.276 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : inactive_10min_precaution_millisec error 01-05 10:43:33.276 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(inactive_before_10min_precaution_millisec), check retry err: -21/(2/No such file or directory). 01-05 10:43:33.276 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(inactive_before_10min_precaution_millisec) step(-17825744) failed(2 / No such file or directory) 01-05 10:43:33.276 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : inactive_before_10min_precaution_millisec error 01-05 10:43:33.276 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:33.276 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:33.286 : WARN / SHealth_Service ( 1050 : 1050 ) : ContextRestingHeartrateProxy.cpp: OnRestingHrUpdatedCB(303) > hrValue: 1007 01-05 10:43:33.286 : ERROR / SHealth_Service ( 1050 : 1050 ) : RestingHeartrateController.cpp: OnAutoHrDetected(83) > invalid parameter 01-05 10:43:33.291 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:43:33.291 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:43:33.296 : WARN / wnotib ( 712 : 712 ) : w-notification-board-noti-manager.c: wnotib_noti_manager_notiboard_vi_rest_time_cb(1596) > No postponed update. 01-05 10:43:33.296 : INFO / efl-extension ( 712 : 712 ) : efl_extension_circle_object_scroller.c: _eext_circle_object_scroller_scroll_animatioin_stop_cb(501) > [0x45bb8750 : elm_scroller] CurrentPage(2) 01-05 10:43:33.301 : ERROR / PKGMGR_CERT ( 6025 : 6025 ) : pkgmgrinfo_certinfo.c: pkgmgrinfo_save_certinfo(570) > Transaction Commit and End 01-05 10:43:33.306 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __widget_pause(998) > widget_pause 01-05 10:43:33.306 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppPause(717) > 01-05 10:43:33.306 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:33.306 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:33.306 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:33.306 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:33.306 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:33.306 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:33.306 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:33.306 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:43:33.421 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _home_scroll_cb(564) > scroll,done 01-05 10:43:33.601 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1209) > [SVOICE] Wake up Enable end. (ret: 0x0) 01-05 10:43:33.601 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_wakeup_enable] ERROR_NONE (0x00000000) 01-05 10:43:33.601 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_set_param(1238) > [SVOICE] set param [keyword length] : 0 01-05 10:43:33.631 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_set_param] ERROR_NONE (0x00000000) 01-05 10:43:33.631 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1206) > [SVOICE] Wake up Enable start 01-05 10:43:33.671 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1209) > [SVOICE] Wake up Enable end. (ret: 0x0) 01-05 10:43:33.671 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_wakeup_enable] ERROR_NONE (0x00000000) 01-05 10:43:33.796 : WARN / W_HOME ( 712 : 712 ) : index.c: index_hide(337) > hide VI:1 visibility:1 vi:(nil) 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnCheckRemotePort(115) > _MessagePortStub::OnCheckRemotePort. 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(207) > _MessagePortService::CheckRemotePort 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(220) > Check a remote message port: [com.samsung.w-music-player.music-control-service:music-control-service-request-message-port] 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnSendMessage(126) > MessagePort OnSendMessage 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(291) > _MessagePortService::SendMessage 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(299) > Sends a message to a remote message port [com.samsung.w-music-player.music-control-service:music-control-service-request-message-port] 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: SendMessage(138) > MessagePort SendMessage 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: SendResponse(884) > _MessagePortIpcServer::SendResponse 01-05 10:43:33.921 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:33.926 : ERROR / CAPI_APPFW_APP_CONTROL ( 827 : 827 ) : app_control.c: app_control_error(133) > [app_control_get_caller] INVALID_PARAMETER(0xffffffea) : invalid app_control handle type 01-05 10:43:33.926 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-service.c: _music_control_service_pasre_request(405) > [TID:827] value = [true] 01-05 10:43:33.926 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __request_handler(639) > __request_handler: 14 01-05 10:43:33.931 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __send_result_to_client(83) > __send_result_to_client, pid: 712 01-05 10:43:33.991 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-message.c: music_control_message_send_media_changed_ind(229) > [TID:827] [MUSIC_PLAYER_EVENT] 01-05 10:43:33.991 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:33.991 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:33.991 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:33.991 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnCheckRemotePort(115) > _MessagePortStub::OnCheckRemotePort. 01-05 10:43:33.991 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(207) > _MessagePortService::CheckRemotePort 01-05 10:43:33.991 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:33.991 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(220) > Check a remote message port: [com.samsung.w-home:music-control-service-message-port] 01-05 10:43:33.991 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnSendMessage(126) > MessagePort OnSendMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(291) > _MessagePortService::SendMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(299) > Sends a message to a remote message port [com.samsung.w-home:music-control-service-message-port] 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: SendMessage(138) > MessagePort SendMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: SendResponse(884) > _MessagePortIpcServer::SendResponse 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:33.996 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-message.c: music_control_message_send_player_state_changed_ind(254) > [TID:827] [MUSIC_PLAYER_EVENT] 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnCheckRemotePort(115) > _MessagePortStub::OnCheckRemotePort. 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(207) > _MessagePortService::CheckRemotePort 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(220) > Check a remote message port: [com.samsung.w-home:music-control-service-message-port] 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnSendMessage(126) > MessagePort OnSendMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(291) > _MessagePortService::SendMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(299) > Sends a message to a remote message port [com.samsung.w-home:music-control-service-message-port] 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: SendMessage(138) > MessagePort SendMessage 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: SendResponse(884) > _MessagePortIpcServer::SendResponse 01-05 10:43:33.996 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:34.001 : INFO / TIZEN_N_SOUND_MANAGER ( 827 : 827 ) : sound_manager.c: sound_manager_get_volume(84) > returns : type=4, volume=0, ret=0x80000241 01-05 10:43:34.001 : ERROR / TIZEN_N_SOUND_MANAGER ( 827 : 827 ) : sound_manager_private.c: __convert_sound_manager_error_code(98) > [sound_manager_get_volume] INTERNAL (0xfe6a0001): mm_error(0x80000241) 01-05 10:43:34.001 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-sound-manager.c: music_control_sound_mgr_get_volume(108) > [TID:827] sound_manager_get_volume() .. [0xfe6a0001] 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnCheckRemotePort(115) > _MessagePortStub::OnCheckRemotePort. 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(207) > _MessagePortService::CheckRemotePort 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(220) > Check a remote message port: [com.samsung.w-home:music-control-service-message-port] 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnSendMessage(126) > MessagePort OnSendMessage 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(291) > _MessagePortService::SendMessage 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(299) > Sends a message to a remote message port [com.samsung.w-home:music-control-service-message-port] 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: SendMessage(138) > MessagePort SendMessage 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: SendResponse(884) > _MessagePortIpcServer::SendResponse 01-05 10:43:34.001 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:34.016 : WARN / W_HOME ( 712 : 712 ) : clock_shortcut.c: _music_service_messageport_cb(361) > mode:local state:paused 01-05 10:43:34.016 : ERROR / W_HOME ( 712 : 712 ) : clock_shortcut.c: _mp_state_get(104) > (s_info.music_service.state != 1) -> _mp_state_get() return 01-05 10:43:34.016 : WARN / W_HOME ( 712 : 712 ) : clock_shortcut.c: _music_service_messageport_cb(361) > mode:local state:paused 01-05 10:43:34.021 : ERROR / W_HOME ( 712 : 712 ) : clock_shortcut.c: _mp_state_get(104) > (s_info.music_service.state != 1) -> _mp_state_get() return 01-05 10:43:34.266 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: exit_server(1338) > exit_server Start [backend_status=0, queue_status=1] 01-05 10:43:35.166 : ERROR / rpm-installer ( 6025 : 6025 ) : installer-util.c: _installer_util_get_configuration_value(331) > [signature]=[on] 01-05 10:43:36.266 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: exit_server(1338) > exit_server Start [backend_status=0, queue_status=1] 01-05 10:43:37.836 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_cb_log_package(4448) > package [_________] callback : [UPDATE, PROCESSING] 01-05 10:43:37.841 : WARN / W_HOME ( 712 : 712 ) : clock_event.c: _pkgmgr_event_cb(238) > Pkg:org.example.basicnativeapplication is updated, need to check validation 01-05 10:43:37.841 : WARN / W_HOME ( 712 : 712 ) : clock_event.c: _pkgmgr_event_cb(242) > attacheck clock:com.samsung.watchface 01-05 10:43:37.856 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_cb_log_package(4448) > package [_________] callback : [UPDATE, COMPLETED] 01-05 10:43:37.856 : INFO / RESOURCED ( 644 : 644 ) : logging.c: logging_send_signal_to_data(1097) > [logging_send_signal_to_data,1097] send signal to logging data thread 01-05 10:43:37.856 : INFO / RESOURCED ( 644 : 644 ) : logging.c: logging_send_signal_to_update(1177) > [logging_send_signal_to_update,1177] send signal to logging update thread 01-05 10:43:37.861 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_cb_package_manager_event(6761) > package install complete 01-05 10:43:37.861 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_package_install_event(4660) > 01-05 10:43:37.861 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_get_index_from_install_req_list(1760) > Found in install_req_list?[0], index[-1] 01-05 10:43:37.861 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_package_install_event(4684) > triggered from Gear itself. 01-05 10:43:37.881 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: sighandler(445) > child NORMAL exit [6025] 01-05 10:43:38.021 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_send_wapps_install_res(2253) > Fail to get information of installed Package 01-05 10:43:38.066 : ERROR / PKGMGR_INFO ( 503 : 503 ) : pkgmgrinfo_appinfo.c: pkgmgrinfo_appinfo_get_list(848) > (component == PMINFO_SVC_APP) PMINFO_SVC_APP is done 01-05 10:43:38.116 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_layout.c:1020 _elm_layout_smart_content_set() could not swallow 0x45c79008 into part 'elm.swallow.event.0' 01-05 10:43:38.121 : ERROR / APPS ( 712 : 712 ) : AppsViewNecklace.cpp: onShow(541) > AppsItemList[23] 01-05 10:43:38.196 : ERROR / Vi::Animations ( 712 : 712 ) : result Vi::Animations::_AnimationManager::addAnimation(Vi::Animations::Visual&, const string*, Vi::Animations::Animation&)(288) > [E_OBJ_ALREADY_EXIST] Animation with keyName already exists. key name = hide 01-05 10:43:38.196 : INFO / Vi::Animations ( 712 : 712 ) : result Vi::Animations::_VisualImpl::addAnimation(const string*, Vi::Animations::Animation&)(6999) > [E_OBJ_ALREADY_EXIST] Propagating. 01-05 10:43:38.201 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_layout.c:1020 _elm_layout_smart_content_set() could not swallow 0x45c79008 into part 'elm.swallow.event.0' 01-05 10:43:38.206 : ERROR / APPS ( 712 : 712 ) : AppsViewNecklace.cpp: onShow(541) > AppsItemList[24] 01-05 10:43:38.266 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: exit_server(1338) > exit_server Start [backend_status=1, queue_status=1] 01-05 10:43:38.266 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: main(2180) > package manager server terminated. 01-05 10:43:40.281 : ERROR / W_INDICATOR ( 694 : 694 ) : windicator_connection.c: _connection_icon_set(554) > [_connection_icon_set:554] Set Connection TYPE_NONE, show sw.icon_1 (11)(0) 01-05 10:43:40.281 : ERROR / W_INDICATOR ( 694 : 694 ) : windicator_connection.c: _packet_type_changed_cb(899) > [_packet_type_changed_cb:899] WIFI MODE 01-05 10:43:47.661 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1111) > signal_lcd_status_signal: LCDOff 01-05 10:43:47.671 : WARN / W_HOME ( 712 : 712 ) : dbus.c: _dbus_message_recv_cb(204) > LCD off 01-05 10:43:47.671 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_del(151) > timer del 01-05 10:43:47.671 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_enable(133) > 1 01-05 10:43:47.671 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _lcd_off_cb(699) > lcd state: 0 01-05 10:43:47.671 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:1 win_state:0(1) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:47.671 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(333) > appcore paused manually 01-05 10:43:47.671 : WARN / W_HOME ( 712 : 712 ) : main.c: home_appcore_pause(717) > Home Appcore Paused 01-05 10:43:47.671 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _app_pause_cb(372) > state: 1 -> 2 01-05 10:43:47.671 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:0(1) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:47.676 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:0, app_state:2 win_state:0(1) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:47.676 : WARN / W_HOME ( 712 : 712 ) : main.c: home_pause(751) > clock/widget paused 01-05 10:43:47.676 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:2 win_state:0(1) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:47.676 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:47.676 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:47.676 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:47.676 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnCheckRemotePort(115) > _MessagePortStub::OnCheckRemotePort. 01-05 10:43:47.676 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(207) > _MessagePortService::CheckRemotePort 01-05 10:43:47.676 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:47.676 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(220) > Check a remote message port: [com.samsung.w-music-player.music-control-service:music-control-service-request-message-port] 01-05 10:43:47.676 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:47.686 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:43:47.686 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:43:47.686 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:43:47.686 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnSendMessage(126) > MessagePort OnSendMessage 01-05 10:43:47.686 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(291) > _MessagePortService::SendMessage 01-05 10:43:47.686 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:43:47.686 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(299) > Sends a message to a remote message port [com.samsung.w-music-player.music-control-service:music-control-service-request-message-port] 01-05 10:43:47.686 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: SendMessage(138) > MessagePort SendMessage 01-05 10:43:47.686 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: SendResponse(884) > _MessagePortIpcServer::SendResponse 01-05 10:43:47.686 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:43:47.686 : ERROR / CAPI_APPFW_APP_CONTROL ( 827 : 827 ) : app_control.c: app_control_error(133) > [app_control_get_caller] INVALID_PARAMETER(0xffffffea) : invalid app_control handle type 01-05 10:43:47.686 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-service.c: _music_control_service_pasre_request(405) > [TID:827] value = [false] 01-05 10:43:47.716 : INFO / SCONTEXT-LIB ( 701 : 701 ) : scontext.c: remove_changed_cb(145) > UnSet Changed CB: 42 01-05 10:43:47.716 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1470) > [_on_lcd_signal_receive_cb:1470] _on_lcd_signal_receive_cb, 1470, Pre LCD off by [timeout] 01-05 10:43:47.716 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _pre_lcd_off(1254) > [_pre_lcd_off:1254] Will LCD OFF as wake_up_setting[1] 01-05 10:43:47.721 : ERROR / STARTER ( 688 : 688 ) : scontext_util.c: scontext_util_handle_lock_state(64) > [scontext_util_handle_lock_state:64] wear state[0],bPossible [0] 01-05 10:43:47.721 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _check_reserved_popup_status(260) > [_check_reserved_popup_status:260] Current reserved apps status : 0 01-05 10:43:47.721 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _check_reserved_apps_status(296) > [_check_reserved_apps_status:296] Current reserved apps status : 0 01-05 10:43:47.876 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1206) > [SVOICE] Wake up Disable start 01-05 10:43:47.876 : INFO / SHealth_Common ( 1050 : 1050 ) : SystemUtil.cpp: OnDeviceStatusChanged(676) > lcdState:3 01-05 10:43:47.876 : INFO / SHealth_Service ( 1050 : 1050 ) : SHealthServiceController.cpp: OnSystemUtilLcdStateChanged(671) > ### 01-05 10:43:47.881 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-consumer-control.c: _music_control_consumer_display_state_changed_cb(435) > [TID:827] [MUSIC_PLAYER_EVENT]DISPLAY_STATE_SCREEN_OFF 01-05 10:43:47.906 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1481) > [_on_lcd_signal_receive_cb:1481] _on_lcd_signal_receive_cb, 1481, Post LCD off by [timeout] 01-05 10:43:47.906 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1380) > [_post_lcd_off:1380] LCD OFF as reserved app[(null)] alpm mode[0] 01-05 10:43:47.906 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1387) > [_post_lcd_off:1387] Current reserved apps status : 0 01-05 10:43:47.906 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1405) > [_post_lcd_off:1405] raise homescreen after 10 sec. home_visible[0] 01-05 10:43:47.921 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: PAUSE State: RUNNING 01-05 10:43:47.921 : INFO / CAPI_APPFW_APPLICATION ( 712 : 712 ) : app_main.c: app_appcore_pause(202) > app_appcore_pause 01-05 10:43:47.921 : WARN / W_HOME ( 712 : 712 ) : main.c: _appcore_pause_cb(690) > appcore pause 01-05 10:43:47.921 : ERROR / W_HOME ( 712 : 712 ) : main.c: _pause_cb(668) > paused already 01-05 10:43:47.981 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1209) > [SVOICE] Wake up Disable end. (ret: 0x0) 01-05 10:43:47.981 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_wakeup_enable] ERROR_NONE (0x00000000) 01-05 10:43:47.991 : WARN / ALARM_MANAGER ( 688 : 688 ) : alarm-lib.c: alarmmgr_add_alarm_withcb(1157) > trigger_at_time(10), start(5-1-2016, 10:43:58), repeat(1), interval(10), type(-1073741822) 01-05 10:43:48.056 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager-schedule.c: _alarm_next_duetime(497) > alarm_id: 29076019, next duetime: 1451970838 01-05 10:43:48.056 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_add_to_list(377) > [alarm-server]: After add alarm_id(29076019) 01-05 10:43:48.056 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_create(943) > [alarm-server]:alarm_context.c_due_time(1452009276), due_time(1451970838) 01-05 10:43:48.056 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(229) > [alarm-server]ALARM_CLEAR ioctl is successfully done. 01-05 10:43:48.056 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(236) > Setted RTC Alarm date/time is 5-1-2016, 05:13:58 (UTC). 01-05 10:43:48.056 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(251) > [alarm-server]RTC ALARM_SET ioctl is successfully done. 01-05 10:43:48.231 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __request_handler(639) > __request_handler: 0 01-05 10:43:48.266 : INFO / AUL_AMD ( 510 : 510 ) : menu_db_util.h: _get_app_info_from_db_by_apppath(239) > path : /usr/bin/launch_app, ret : 0 01-05 10:43:48.301 : INFO / AUL_AMD ( 510 : 510 ) : menu_db_util.h: _get_app_info_from_db_by_apppath(239) > path : /bin/bash, ret : 0 01-05 10:43:48.301 : ERROR / AUL_AMD ( 510 : 510 ) : amd_launch.c: _start_app(1648) > no caller appid info, ret: -1 01-05 10:43:48.301 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: _start_app(1658) > caller pid : 6115 01-05 10:43:48.311 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: MEM_FLUSH State: PAUSED 01-05 10:43:48.331 : ERROR / RESOURCED ( 644 : 644 ) : block.c: block_prelaunch_state(134) > [block_prelaunch_state,134] insert data org.example.basicnativeapplication, table num : 1 01-05 10:43:48.331 : ERROR / RESOURCED ( 644 : 644 ) : heart-memory.c: heart_memory_get_data(601) > [heart_memory_get_data,601] hashtable heart_memory_app_list is NULL 01-05 10:43:48.336 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: _start_app(2025) > pad pid(-5) 01-05 10:43:48.336 : WARN / AUL_PAD ( 1186 : 1186 ) : launchpad.c: __launchpad_main_loop(512) > Launch on type-based process-pool 01-05 10:43:48.336 : WARN / AUL_PAD ( 1186 : 1186 ) : launchpad.c: __send_result_to_caller(265) > Check app launching 01-05 10:43:48.466 : INFO / efl-extension ( 5660 : 5660 ) : efl_extension.c: eext_mod_init(40) > Init 01-05 10:43:48.466 : INFO / UXT ( 5660 : 5660 ) : Uxt_ObjectManager.cpp: OnInitialized(731) > Initialized. 01-05 10:43:48.466 : INFO / basicnativeapplication ( 5660 : 5660 ) : ggggggggggggggggggggggggggggggggggggggggggg 01-05 10:43:48.466 : ERROR / CAPI_NETWORK_BLUETOOTH ( 5660 : 5660 ) : bluetooth-gatt.c: bt_gatt_set_connection_state_changed_cb(542) > [bt_gatt_set_connection_state_changed_cb] NOT_INITIALIZED(0xfe400101) 01-05 10:43:48.471 : INFO / basicnativeapplication ( 5660 : 5660 ) : [bt_socket_set_connection_state_changed_cb] failed. 01-05 10:43:48.471 : INFO / CAPI_APPFW_APPLICATION ( 5660 : 5660 ) : app_main.c: ui_app_main(704) > app_efl_main 01-05 10:43:48.476 : INFO / CAPI_APPFW_APPLICATION ( 5660 : 5660 ) : app_main.c: _ui_app_appcore_create(563) > app_appcore_create 01-05 10:43:48.546 : ERROR / RESOURCED ( 644 : 644 ) : proc-main.c: proc_add_program_list(232) > [proc_add_program_list,232] not found ppi : org.example.basicnativeapplication 01-05 10:43:48.611 : ERROR / EFL ( 5660 : 5660 ) : ecore_evas<5660> ecore_evas_extn.c:2202 ecore_evas_extn_plug_connect() Extn plug failed to connect:ipctype=0, svcname=elm_indicator_portrait, svcnum=0, svcsys=0 01-05 10:43:48.666 : INFO / basicnativeapplication ( 5660 : 5660 ) : init bt 01-05 10:43:48.756 : INFO / basicnativeapplication ( 5660 : 5660 ) : [bt_initialize]starting. 01-05 10:43:48.826 : ERROR / E17 ( 418 : 418 ) : e_manager.c: _e_manager_cb_window_show_request(1128) > Show request(0x05200002) 01-05 10:43:48.866 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _ecore_x_message_cb(403) > state: 0 -> 1 01-05 10:43:48.866 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:1(1) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:48.866 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:1(1) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:48.866 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:2 win_state:1(1) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:48.866 : WARN / W_HOME ( 712 : 712 ) : main.c: _ecore_x_message_cb(1228) > main_info.is_win_on_top: 0 01-05 10:43:48.871 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(429) > [APP 5660] Event: RESET State: CREATED 01-05 10:43:48.871 : INFO / CAPI_APPFW_APPLICATION ( 5660 : 5660 ) : app_main.c: _ui_app_appcore_reset(645) > app_appcore_reset 01-05 10:43:48.916 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(472) > Legacy lifecycle: 0 01-05 10:43:48.916 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(474) > [APP 5660] Initial Launching, call the resume_cb 01-05 10:43:48.916 : INFO / CAPI_APPFW_APPLICATION ( 5660 : 5660 ) : app_main.c: _ui_app_appcore_resume(628) > app_appcore_resume 01-05 10:43:48.926 : WARN / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __show_cb(787) > [EVENT_TEST][EVENT] GET SHOW EVENT!!!. WIN:5200002 01-05 10:43:48.976 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _window_visibility_cb(448) > Window [0x2400003] is now visible(1) 01-05 10:43:48.976 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _window_visibility_cb(458) > state: 1 -> 0 01-05 10:43:48.976 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:1(0) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:48.976 : WARN / W_HOME ( 712 : 712 ) : main.c: _window_visibility_cb(1195) > Window [0x2400003] is now visible(1) 01-05 10:43:48.976 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __visibility_cb(855) > LCD status is off, skip the AE_RESUME event 01-05 10:43:48.976 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: PAUSE State: PAUSED 01-05 10:43:48.981 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __visibility_cb(868) > LCD status is off, skip the AE_RESUME event 01-05 10:43:48.981 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_ecore_x_event_visibility_changed_cb(609) > fully_obscured: 1 01-05 10:43:48.981 : ERROR / wnotib ( 712 : 712 ) : w-notification-board-action-drawer.c: wnotib_action_drawer_hidden_get(4030) > [NULL==g_wnotib_action_drawer_data] msg Drawer not initialized. 01-05 10:43:48.991 : WARN / AUL_AMD ( 510 : 510 ) : amd_key.c: _key_ungrab(254) > fail(-1) to ungrab key(XF86Stop) 01-05 10:43:48.991 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __e17_status_handler(2170) > back key ungrab error 01-05 10:43:49.391 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:43:49.391 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:43:49.391 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:43:49.391 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:43:50.701 : INFO / AUL_PAD ( 6117 : 6117 ) : launchpad_loader.c: main(600) > [candidate] elm init, returned: 1 01-05 10:43:50.876 : INFO / GESTURE ( 139 : 139 ) : gesture.c: GestureHandleKeyPressEvent(3711) > [GestureHandleKeyPressEvent] Ignore key press in DPMS off (devid:7) keycode=166 01-05 10:43:50.906 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1111) > signal_lcd_status_signal: LCDOn 01-05 10:43:50.906 : INFO / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1130) > Call the time_tick_cb 01-05 10:43:50.906 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:43:50.906 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:43:50.906 : INFO / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(756) > set force update!! 01-05 10:43:50.906 : INFO / watchface-viewer ( 752 : 752 ) : viewer-image-file-loader.cpp: OnImageLoadingDoneIdlerCb(442) > ImagesLoadingDoneSignal().Emit(); 01-05 10:43:50.906 : WARN / W_HOME ( 712 : 712 ) : dbus.c: _dbus_message_recv_cb(186) > LCD on 01-05 10:43:50.906 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_set(161) > timer set 01-05 10:43:50.906 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_del(151) > timer del 01-05 10:43:50.911 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _apps_status_get(123) > apps status:0 01-05 10:43:50.911 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _lcd_on_cb(295) > move_to_clock:0 clock_visible:0 info->offtime:3349 01-05 10:43:50.911 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_schedule(211) > schedule, manual render 01-05 10:43:50.911 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _lcd_on_cb(691) > lcd state: 1 01-05 10:43:50.911 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:1(0) pm_state:1 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:43:50.911 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1448) > [_on_lcd_signal_receive_cb:1448] _on_lcd_signal_receive_cb, 1448, Pre LCD on by [powerkey] after screen off time [3349]ms 01-05 10:43:50.911 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _pre_lcd_on(1174) > [_pre_lcd_on:1174] Will LCD ON as reserved app[(null)] alpm mode[0] 01-05 10:43:50.916 : INFO / SCONTEXT-LIB ( 701 : 701 ) : scontext.c: context_add_changed_cb(211) > [SUCCESS] Set Changed CB: 42 (req_id=27) 01-05 10:43:50.916 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(429) > [APP 5660] Event: RESUME State: RUNNING 01-05 10:43:50.921 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_set_param(1238) > [SVOICE] set param [keyword length] : 0 01-05 10:43:50.931 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_set_param] ERROR_NONE (0x00000000) 01-05 10:43:50.931 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1206) > [SVOICE] Wake up Enable start 01-05 10:43:50.966 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_remove_from_list(456) > [alarm-server]:Remove alarm id(29076019) 01-05 10:43:50.966 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(229) > [alarm-server]ALARM_CLEAR ioctl is successfully done. 01-05 10:43:50.966 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(236) > Setted RTC Alarm date/time is 5-1-2016, 15:54:36 (UTC). 01-05 10:43:50.966 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(251) > [alarm-server]RTC ALARM_SET ioctl is successfully done. 01-05 10:43:50.966 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: alarm_manager_alarm_delete(2207) > alarm_id[29076019] is removed. 01-05 10:43:51.011 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-consumer-control.c: _music_control_consumer_display_state_changed_cb(439) > [TID:827] [MUSIC_PLAYER_EVENT]DISPLAY_STATE_NORMAL 01-05 10:43:51.036 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1459) > [_on_lcd_signal_receive_cb:1459] _on_lcd_signal_receive_cb, 1459, Post LCD on by [powerkey] 01-05 10:43:51.036 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_on(1220) > [_post_lcd_on:1220] LCD ON as reserved app[(null)] alpm mode[0] 01-05 10:43:51.056 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:43:51.056 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE08794 01-05 10:43:51.056 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:57:87 01-05 10:43:51.056 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:43:51.111 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_cb(140) > timeout callback expired 01-05 10:43:51.111 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_enable(133) > 0 01-05 10:43:51.176 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:43:51.176 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE08794 01-05 10:43:51.176 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:57:87 01-05 10:43:51.176 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:43:51.196 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1209) > [SVOICE] Wake up Enable end. (ret: 0x0) 01-05 10:43:51.196 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_wakeup_enable] ERROR_NONE (0x00000000) 01-05 10:43:51.231 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __request_handler(639) > __request_handler: 14 01-05 10:43:51.246 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __send_result_to_client(83) > __send_result_to_client, pid: 5660 01-05 10:43:51.246 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __request_handler(639) > __request_handler: 12 01-05 10:43:51.246 : INFO / SHealth_Common ( 1050 : 1050 ) : SystemUtil.cpp: OnDeviceStatusChanged(676) > lcdState:1 01-05 10:43:51.246 : INFO / SHealth_Service ( 1050 : 1050 ) : SHealthServiceController.cpp: OnSystemUtilLcdStateChanged(671) > ### 01-05 10:43:51.256 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(pedometer_inactive_period), check retry err: -21/(2/No such file or directory). 01-05 10:43:51.256 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(pedometer_inactive_period) step(-17825744) failed(2 / No such file or directory) 01-05 10:43:51.256 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : pedometer_inactive_period error 01-05 10:43:51.256 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(inactive_10min_precaution_millisec), check retry err: -21/(2/No such file or directory). 01-05 10:43:51.256 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(inactive_10min_precaution_millisec) step(-17825744) failed(2 / No such file or directory) 01-05 10:43:51.256 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : inactive_10min_precaution_millisec error 01-05 10:43:51.256 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(inactive_before_10min_precaution_millisec), check retry err: -21/(2/No such file or directory). 01-05 10:43:51.256 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(inactive_before_10min_precaution_millisec) step(-17825744) failed(2 / No such file or directory) 01-05 10:43:51.256 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : inactive_before_10min_precaution_millisec error 01-05 10:43:51.291 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:43:51.291 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:43:51.291 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:43:51.291 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:43:51.381 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:43:51.381 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE08794 01-05 10:43:51.381 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:57:87 01-05 10:43:51.381 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:43:52.926 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: MEM_FLUSH State: PAUSED 01-05 10:43:56.001 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:43:56.001 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:43:56.001 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:43:56.001 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:43:56.851 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_cb_wearonoff_monitor(18974) > wear_monitor_status update[0] = 1 -> 2 01-05 10:43:56.856 : ERROR / WMS ( 504 : 504 ) : wms_msg_broker.c: wms_msg_broker_send(1636) > 01-05 10:43:56.856 : ERROR / WMS ( 504 : 504 ) : ========== 01-05 10:43:56.856 : ERROR / WMS ( 504 : 504 ) : ##WMS SEND : mgr_gear_wear_onoff_req 01-05 10:43:56.856 : ERROR / WMS ( 504 : 504 ) : ========== 01-05 10:43:56.871 : ERROR / WMS ( 504 : 504 ) : wms_msg_broker.c: wms_msg_broker_send(1639) > No service connection to host. Skipping this message. 01-05 10:43:56.941 : WARN / SHealth_Service ( 1050 : 1050 ) : ContextRestingHeartrateProxy.cpp: OnRestingHrUpdatedCB(303) > hrValue: 1008 01-05 10:43:56.941 : ERROR / SHealth_Service ( 1050 : 1050 ) : RestingHeartrateController.cpp: OnAutoHrDetected(83) > invalid parameter 01-05 10:44:00.296 : ERROR / W_INDICATOR ( 694 : 694 ) : windicator_connection.c: _connection_icon_set(554) > [_connection_icon_set:554] Set Connection TYPE_NONE, show sw.icon_1 (12)(0) 01-05 10:44:00.296 : ERROR / W_INDICATOR ( 694 : 694 ) : windicator_connection.c: _packet_type_changed_cb(899) > [_packet_type_changed_cb:899] WIFI MODE 01-05 10:44:01.096 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:01.096 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:44:01.096 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:44:01.096 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:01.231 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:01.231 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE08794 01-05 10:44:01.231 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:57:87 01-05 10:44:01.231 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:01.516 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(pedometer_inactive_period), check retry err: -21/(2/No such file or directory). 01-05 10:44:01.516 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(pedometer_inactive_period) step(-17825744) failed(2 / No such file or directory) 01-05 10:44:01.521 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : pedometer_inactive_period error 01-05 10:44:01.526 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(inactive_10min_precaution_millisec), check retry err: -21/(2/No such file or directory). 01-05 10:44:01.526 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(inactive_10min_precaution_millisec) step(-17825744) failed(2 / No such file or directory) 01-05 10:44:01.531 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : inactive_10min_precaution_millisec error 01-05 10:44:01.531 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(inactive_before_10min_precaution_millisec), check retry err: -21/(2/No such file or directory). 01-05 10:44:01.536 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(inactive_before_10min_precaution_millisec) step(-17825744) failed(2 / No such file or directory) 01-05 10:44:01.536 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : inactive_before_10min_precaution_millisec error 01-05 10:44:05.541 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1111) > signal_lcd_status_signal: LCDOff 01-05 10:44:05.556 : WARN / W_HOME ( 712 : 712 ) : dbus.c: _dbus_message_recv_cb(204) > LCD off 01-05 10:44:05.556 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_del(151) > timer del 01-05 10:44:05.556 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_enable(133) > 1 01-05 10:44:05.556 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _lcd_off_cb(699) > lcd state: 0 01-05 10:44:05.556 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:1(0) pm_state:0 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:05.566 : INFO / SCONTEXT-LIB ( 701 : 701 ) : scontext.c: remove_changed_cb(145) > UnSet Changed CB: 42 01-05 10:44:05.566 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1470) > [_on_lcd_signal_receive_cb:1470] _on_lcd_signal_receive_cb, 1470, Pre LCD off by [timeout] 01-05 10:44:05.566 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _pre_lcd_off(1254) > [_pre_lcd_off:1254] Will LCD OFF as wake_up_setting[1] 01-05 10:44:05.566 : ERROR / STARTER ( 688 : 688 ) : scontext_util.c: scontext_util_handle_lock_state(64) > [scontext_util_handle_lock_state:64] wear state[0],bPossible [0] 01-05 10:44:05.566 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _check_reserved_popup_status(260) > [_check_reserved_popup_status:260] Current reserved apps status : 0 01-05 10:44:05.566 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _check_reserved_apps_status(296) > [_check_reserved_apps_status:296] Current reserved apps status : 0 01-05 10:44:05.781 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1481) > [_on_lcd_signal_receive_cb:1481] _on_lcd_signal_receive_cb, 1481, Post LCD off by [timeout] 01-05 10:44:05.781 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1380) > [_post_lcd_off:1380] LCD OFF as reserved app[(null)] alpm mode[0] 01-05 10:44:05.781 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1387) > [_post_lcd_off:1387] Current reserved apps status : 0 01-05 10:44:05.781 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1405) > [_post_lcd_off:1405] raise homescreen after 10 sec. home_visible[0] 01-05 10:44:05.786 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-consumer-control.c: _music_control_consumer_display_state_changed_cb(435) > [TID:827] [MUSIC_PLAYER_EVENT]DISPLAY_STATE_SCREEN_OFF 01-05 10:44:05.786 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(429) > [APP 5660] Event: PAUSE State: RUNNING 01-05 10:44:05.786 : INFO / CAPI_APPFW_APPLICATION ( 5660 : 5660 ) : app_main.c: _ui_app_appcore_pause(611) > app_appcore_pause 01-05 10:44:05.846 : WARN / ALARM_MANAGER ( 688 : 688 ) : alarm-lib.c: alarmmgr_add_alarm_withcb(1157) > trigger_at_time(10), start(5-1-2016, 10:44:16), repeat(1), interval(10), type(-1073741822) 01-05 10:44:05.861 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1206) > [SVOICE] Wake up Disable start 01-05 10:44:05.941 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1209) > [SVOICE] Wake up Disable end. (ret: 0x0) 01-05 10:44:05.941 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_wakeup_enable] ERROR_NONE (0x00000000) 01-05 10:44:05.946 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager-schedule.c: _alarm_next_duetime(497) > alarm_id: 229363174, next duetime: 1451970856 01-05 10:44:05.946 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_add_to_list(377) > [alarm-server]: After add alarm_id(229363174) 01-05 10:44:05.946 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_create(943) > [alarm-server]:alarm_context.c_due_time(1452009276), due_time(1451970856) 01-05 10:44:05.946 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(229) > [alarm-server]ALARM_CLEAR ioctl is successfully done. 01-05 10:44:05.946 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(236) > Setted RTC Alarm date/time is 5-1-2016, 05:14:16 (UTC). 01-05 10:44:05.946 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(251) > [alarm-server]RTC ALARM_SET ioctl is successfully done. 01-05 10:44:05.946 : INFO / SHealth_Common ( 1050 : 1050 ) : SystemUtil.cpp: OnDeviceStatusChanged(676) > lcdState:3 01-05 10:44:05.946 : INFO / SHealth_Service ( 1050 : 1050 ) : SHealthServiceController.cpp: OnSystemUtilLcdStateChanged(671) > ### 01-05 10:44:06.041 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:06.041 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:44:06.041 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:44:06.041 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:10.743 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:10.743 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:44:10.743 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:44:10.743 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:15.789 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:15.789 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:44:15.789 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:44:15.789 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:15.999 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_handler_idle(1362) > Lock the display not to enter LCD OFF 01-05 10:44:16.084 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __display_lock_state(1690) > Lock LCD OFF is successfully done 01-05 10:44:16.144 : ERROR / RESOURCED ( 644 : 644 ) : freezer-process.c: freezer_process_pid_set(146) > [freezer_process_pid_set,146] Cant find process info for 688 01-05 10:44:16.154 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_expired(1324) > alarm_id[229363174] is expired. 01-05 10:44:16.159 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager-schedule.c: _alarm_next_duetime(497) > alarm_id: 229363174, next duetime: 1451970866 01-05 10:44:16.159 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(229) > [alarm-server]ALARM_CLEAR ioctl is successfully done. 01-05 10:44:16.159 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(236) > Setted RTC Alarm date/time is 5-1-2016, 05:14:26 (UTC). 01-05 10:44:16.159 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(251) > [alarm-server]RTC ALARM_SET ioctl is successfully done. 01-05 10:44:16.159 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_handler_idle(1388) > Unlock the display from LCD OFF 01-05 10:44:16.159 : WARN / ALARM_MANAGER ( 688 : 688 ) : alarm-lib.c: __handle_expiry_method_call(154) > [alarm-lib] : Alarm expired for [ALARM.astarter] : Alarm id [229363174] 01-05 10:44:16.159 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: __starter_clock_mgr_homescreen_alarm_cb(855) > [__starter_clock_mgr_homescreen_alarm_cb:855] homescreen alarm timer expired [229363174] 01-05 10:44:16.164 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __request_handler(639) > __request_handler: 0 01-05 10:44:16.169 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: _start_app(1658) > caller pid : 688 01-05 10:44:16.179 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __display_unlock_state(1733) > Unlock LCD OFF is successfully done 01-05 10:44:16.184 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __nofork_processing(1137) > __nofork_processing, cmd: 0, pid: 712 01-05 10:44:16.189 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __reply_handler(908) > listen fd(29) , send fd(28), pid(712), cmd(0) 01-05 10:44:16.189 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: RESET State: PAUSED 01-05 10:44:16.189 : INFO / CAPI_APPFW_APPLICATION ( 712 : 712 ) : app_main.c: app_appcore_reset(245) > app_appcore_reset 01-05 10:44:16.189 : WARN / W_HOME ( 712 : 712 ) : main.c: _app_control(1713) > Service value : show_clock 01-05 10:44:16.189 : WARN / W_HOME ( 712 : 712 ) : main.c: _app_control(1749) > Show clock operation 01-05 10:44:16.189 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(228) > clock show 01-05 10:44:16.199 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(243) > home raise 01-05 10:44:16.199 : ERROR / W_HOME ( 712 : 712 ) : gesture.c: gesture_win_aux_set(396) > wm.policy.win.do.not.use.deiconify.approve:-1 01-05 10:44:16.199 : WARN / W_HOME ( 712 : 712 ) : dbus_util.c: home_dbus_home_raise_signal_send(260) > Sending HOME RAISE signal, result:0 01-05 10:44:16.199 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(246) > home raise done 01-05 10:44:16.199 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(253) > show clock 01-05 10:44:16.204 : WARN / W_HOME ( 712 : 712 ) : scroller.c: _get_index_in_list(1902) > page:0x45c09520 idx:1 total10 exist:1 01-05 10:44:16.204 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:1270 _elm_scroll_origin_reverse_set() [DDO] obj(45bb8750), origin_x(0), origin_y(0) 01-05 10:44:16.204 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_remove_from_list(456) > [alarm-server]:Remove alarm id(229363174) 01-05 10:44:16.204 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(229) > [alarm-server]ALARM_CLEAR ioctl is successfully done. 01-05 10:44:16.204 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(236) > Setted RTC Alarm date/time is 5-1-2016, 15:54:36 (UTC). 01-05 10:44:16.204 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(251) > [alarm-server]RTC ALARM_SET ioctl is successfully done. 01-05 10:44:16.204 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: alarm_manager_alarm_delete(2207) > alarm_id[229363174] is removed. 01-05 10:44:16.209 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _clock_view_visible_cb(608) > state: 0 -> 1 01-05 10:44:16.209 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:1(0) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:16.214 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:16.214 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:16.214 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(479) > Legacy lifecycle: 1 01-05 10:44:16.214 : ERROR / E17 ( 418 : 418 ) : e_manager.c: _e_manager_cb_client_message(1506) > ACTIVE REQUEST(0x02400003) 01-05 10:44:16.224 : WARN / AUL_AMD ( 510 : 510 ) : amd_key.c: _key_ungrab(254) > fail(-1) to ungrab key(XF86Stop) 01-05 10:44:16.224 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __e17_status_handler(2170) > back key ungrab error 01-05 10:44:16.224 : INFO / MALI ( 712 : 712 ) : egl_platform_x11_tizen.c: tizen_update_native_surface_private(183) > [EGL-X11] surface->[0x441f7c98] swap changed from sync to async 01-05 10:44:16.239 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _ecore_x_message_cb(403) > state: 1 -> 0 01-05 10:44:16.239 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:0(0) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:16.239 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:0(0) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:16.244 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:2 win_state:0(0) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:16.244 : WARN / W_HOME ( 712 : 712 ) : main.c: _ecore_x_message_cb(1228) > main_info.is_win_on_top: 1 01-05 10:44:16.279 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _window_visibility_cb(448) > Window [0x2400003] is now visible(0) 01-05 10:44:16.279 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _window_visibility_cb(458) > state: 0 -> 1 01-05 10:44:16.279 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:0(1) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:16.279 : WARN / W_HOME ( 712 : 712 ) : main.c: _window_visibility_cb(1195) > Window [0x2400003] is now visible(0) 01-05 10:44:16.279 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __visibility_cb(855) > LCD status is off, skip the AE_RESUME event 01-05 10:44:16.279 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_ecore_x_event_visibility_changed_cb(609) > fully_obscured: 0 01-05 10:44:16.279 : ERROR / wnotib ( 712 : 712 ) : w-notification-board-action-drawer.c: wnotib_action_drawer_hidden_get(4030) > [NULL==g_wnotib_action_drawer_data] msg Drawer not initialized. 01-05 10:44:16.279 : WARN / wnotib ( 712 : 712 ) : w-notification-board-noti-manager.c: wnotib_noti_manager_notiboard_vi_rest_time_cb(1596) > No postponed update. 01-05 10:44:16.284 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(429) > [APP 5660] Event: PAUSE State: PAUSED 01-05 10:44:16.284 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __visibility_cb(868) > LCD status is off, skip the AE_RESUME event 01-05 10:44:16.309 : INFO / MALI ( 712 : 712 ) : egl_platform_x11_tizen.c: tizen_update_native_surface_private(174) > [EGL-X11] surface->[0x441f7c98] swap changed from async to sync 01-05 10:44:17.408 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_context_handler(1173) > _signal_context_handler: type: 0, state: 3 01-05 10:44:17.408 : INFO / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_context_handler(1190) > Call the time_tick_cb 01-05 10:44:17.408 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:44:17.408 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:44:17.408 : INFO / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(756) > set force update!! 01-05 10:44:17.413 : ERROR / EFL ( 752 : 752 ) : elementary<752> elm_layout.c:2207 elm_layout_add() could not add 0x438fa908 as sub object of 0x438f8088 01-05 10:44:17.418 : WARN / W_HOME ( 712 : 712 ) : dbus.c: _dbus_message_recv_cb(169) > gesture:wristup 01-05 10:44:17.418 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_schedule(211) > schedule, manual render 01-05 10:44:17.428 : ERROR / EFL ( 752 : 752 ) : edje<752> edje_util.c:3770 edje_object_size_min_restricted_calc() group digital-clock/24 has a non-fixed part 'hour'. Adding 'fixed: 1 1;' to source EDC may help. Continuing discarding faulty part. 01-05 10:44:17.428 : INFO / watchface-viewer ( 752 : 752 ) : viewer-part-resource-evas.cpp: UpdateLayout(1247) > colon 20x118 at (132,0) 01-05 10:44:17.438 : INFO / watchface-viewer ( 752 : 752 ) : viewer-image-file-loader.cpp: OnImageLoadingDoneIdlerCb(442) > ImagesLoadingDoneSignal().Emit(); 01-05 10:44:17.448 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1111) > signal_lcd_status_signal: LCDOn 01-05 10:44:17.448 : INFO / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1130) > Call the time_tick_cb 01-05 10:44:17.453 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:44:17.453 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:44:17.453 : INFO / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(756) > set force update!! 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : dbus.c: _dbus_message_recv_cb(186) > LCD on 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_set(161) > timer set 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_del(151) > timer del 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _apps_status_get(123) > apps status:0 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _lcd_on_cb(295) > move_to_clock:1 clock_visible:1 info->offtime:12023 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_schedule(211) > schedule, manual render 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _lcd_on_cb(691) > lcd state: 1 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(342) > appcore resumed manually 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : main.c: home_appcore_resume(708) > Home Appcore Resumed 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _app_resume_cb(355) > state: 2 -> 1 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:0, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : main.c: home_resume(729) > journal_appcore_app_fully_loaded called 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : main.c: home_resume(733) > clock/widget resumed 01-05 10:44:17.453 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:17.458 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4470) > [BackGestureSetProperty] atom=_E_MOVE_W_HOME_CLOCK_STATE, value=1, Clock display 01-05 10:44:17.463 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1448) > [_on_lcd_signal_receive_cb:1448] _on_lcd_signal_receive_cb, 1448, Pre LCD on by [gesture] after screen off time [12023]ms 01-05 10:44:17.463 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _pre_lcd_on(1174) > [_pre_lcd_on:1174] Will LCD ON as reserved app[(null)] alpm mode[0] 01-05 10:44:17.473 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __widget_resume(1009) > widget_resume 01-05 10:44:17.473 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppResume(725) > 01-05 10:44:17.473 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:44:17.473 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:44:17.483 : INFO / SCONTEXT-LIB ( 701 : 701 ) : scontext.c: context_add_changed_cb(211) > [SUCCESS] Set Changed CB: 42 (req_id=28) 01-05 10:44:17.483 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _widget_updated_cb(190) > widget updated 01-05 10:44:17.483 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_del(151) > timer del 01-05 10:44:17.483 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render(176) > 01-05 10:44:17.493 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_set_param(1238) > [SVOICE] set param [keyword length] : 0 01-05 10:44:17.503 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_set_param] ERROR_NONE (0x00000000) 01-05 10:44:17.503 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1206) > [SVOICE] Wake up Enable start 01-05 10:44:17.513 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render(176) > 01-05 10:44:17.573 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-consumer-control.c: _music_control_consumer_display_state_changed_cb(439) > [TID:827] [MUSIC_PLAYER_EVENT]DISPLAY_STATE_NORMAL 01-05 10:44:17.583 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_enable(133) > 0 01-05 10:44:17.583 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: RESUME State: RUNNING 01-05 10:44:17.608 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1459) > [_on_lcd_signal_receive_cb:1459] _on_lcd_signal_receive_cb, 1459, Post LCD on by [gesture] 01-05 10:44:17.608 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_on(1220) > [_post_lcd_on:1220] LCD ON as reserved app[(null)] alpm mode[0] 01-05 10:44:17.613 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(429) > [APP 5660] Event: MEM_FLUSH State: PAUSED 01-05 10:44:17.658 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:44:17.658 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:44:17.673 : INFO / SHealth_Common ( 1050 : 1050 ) : SystemUtil.cpp: OnDeviceStatusChanged(676) > lcdState:1 01-05 10:44:17.673 : INFO / SHealth_Service ( 1050 : 1050 ) : SHealthServiceController.cpp: OnSystemUtilLcdStateChanged(671) > ### 01-05 10:44:17.678 : ERROR / SHealth_Common ( 1050 : 1050 ) : SHealthMessagePortConnection.cpp: Send(344) > exception [[Send]Send appIdList is empty] 01-05 10:44:17.683 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(pedometer_inactive_period), check retry err: -21/(2/No such file or directory). 01-05 10:44:17.683 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(pedometer_inactive_period) step(-17825744) failed(2 / No such file or directory) 01-05 10:44:17.683 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : pedometer_inactive_period error 01-05 10:44:17.683 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(inactive_10min_precaution_millisec), check retry err: -21/(2/No such file or directory). 01-05 10:44:17.683 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(inactive_10min_precaution_millisec) step(-17825744) failed(2 / No such file or directory) 01-05 10:44:17.683 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : inactive_10min_precaution_millisec error 01-05 10:44:17.683 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(inactive_before_10min_precaution_millisec), check retry err: -21/(2/No such file or directory). 01-05 10:44:17.688 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(inactive_before_10min_precaution_millisec) step(-17825744) failed(2 / No such file or directory) 01-05 10:44:17.688 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : inactive_before_10min_precaution_millisec error 01-05 10:44:17.748 : ERROR / WMS ( 504 : 504 ) : wms_event_handler.c: _wms_event_handler_cb_wearonoff_monitor(18974) > wear_monitor_status update[0] = 2 -> 1 01-05 10:44:17.748 : ERROR / WMS ( 504 : 504 ) : wms_msg_broker.c: wms_msg_broker_send(1636) > 01-05 10:44:17.748 : ERROR / WMS ( 504 : 504 ) : ========== 01-05 10:44:17.748 : ERROR / WMS ( 504 : 504 ) : ##WMS SEND : mgr_gear_wear_onoff_req 01-05 10:44:17.748 : ERROR / WMS ( 504 : 504 ) : ========== 01-05 10:44:17.748 : ERROR / WMS ( 504 : 504 ) : wms_msg_broker.c: wms_msg_broker_send(1639) > No service connection to host. Skipping this message. 01-05 10:44:17.768 : WARN / SHealth_Service ( 1050 : 1050 ) : ContextRestingHeartrateProxy.cpp: OnRestingHrUpdatedCB(303) > hrValue: 1007 01-05 10:44:17.768 : ERROR / SHealth_Service ( 1050 : 1050 ) : RestingHeartrateController.cpp: OnAutoHrDetected(83) > invalid parameter 01-05 10:44:17.803 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1209) > [SVOICE] Wake up Enable end. (ret: 0x0) 01-05 10:44:17.803 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_wakeup_enable] ERROR_NONE (0x00000000) 01-05 10:44:17.808 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_set_param(1238) > [SVOICE] set param [keyword length] : 0 01-05 10:44:17.813 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_set_param] ERROR_NONE (0x00000000) 01-05 10:44:17.813 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1206) > [SVOICE] Wake up Enable start 01-05 10:44:17.823 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1209) > [SVOICE] Wake up Enable end. (ret: 0x0) 01-05 10:44:17.823 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_wakeup_enable] ERROR_NONE (0x00000000) 01-05 10:44:17.848 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:44:17.848 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:44:18.003 : INFO / GESTURE ( 139 : 139 ) : gesture.c: GestureRecognize(2947) > disable_home_back_gesture=1, disable_apps_back_gesture=0, disable back key!!! 01-05 10:44:18.008 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.008 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(257) ev->cur.canvas.y(280) 01-05 10:44:18.008 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.008 : ERROR / EFL ( 712 : 712 ) : evas_main<712> evas_events.c:994 evas_event_feed_mouse_down() ButtonEvent:down time=895977 button=1 downs=1 01-05 10:44:18.008 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.008 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(248) ev->cur.canvas.y(275) 01-05 10:44:18.008 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.018 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.018 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(241) ev->cur.canvas.y(267) 01-05 10:44:18.018 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.028 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.028 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(234) ev->cur.canvas.y(263) 01-05 10:44:18.028 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.038 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.038 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(228) ev->cur.canvas.y(261) 01-05 10:44:18.038 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.038 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:44:18.038 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:44:18.038 : INFO / watchface-viewer ( 752 : 752 ) : viewer-part-resource-evas.cpp: Notify(975) > skip first tick after resume!! 01-05 10:44:18.038 : INFO / watchface-viewer ( 752 : 752 ) : viewer-image-file-loader.cpp: OnImageLoadingDoneIdlerCb(442) > ImagesLoadingDoneSignal().Emit(); 01-05 10:44:18.048 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.048 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(224) ev->cur.canvas.y(261) 01-05 10:44:18.048 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.048 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:4248 _elm_scroll_mouse_move_event_cb() [DDO] animator 01-05 10:44:18.048 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3352 _elm_scroll_post_event_move() [DDO] obj(45bb8750), type(elm_scroller) 01-05 10:44:18.048 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3353 _elm_scroll_post_event_move() [DDO] hold_parent(0) 01-05 10:44:18.048 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3381 _elm_scroll_post_event_move() [DDO] elm_widget_drag_lock_x_set : obj(45bb8750), type(elm_scroller) 01-05 10:44:18.058 : WARN / W_HOME ( 712 : 712 ) : home_navigation.c: _is_rightedge(188) > (360 360) not right edge: 0 0 0x45c09520 -> 360 0 0x46d89ae0 01-05 10:44:18.063 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _home_scroll_cb(564) > scroll,start 01-05 10:44:18.063 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.063 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(219) ev->cur.canvas.y(262) 01-05 10:44:18.063 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.063 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:44:18.063 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:44:18.063 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.063 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.078 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.078 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(205) ev->cur.canvas.y(265) 01-05 10:44:18.078 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.083 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.083 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(185) ev->cur.canvas.y(269) 01-05 10:44:18.083 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.088 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:44:18.088 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:44:18.088 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _clock_view_obscured_cb(621) > state: 1 -> 0 01-05 10:44:18.088 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 1, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:18.088 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.088 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.093 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4475) > [BackGestureSetProperty] atom=_E_MOVE_W_HOME_CLOCK_STATE, value=0, No clock display 01-05 10:44:18.098 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.098 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(161) ev->cur.canvas.y(272) 01-05 10:44:18.098 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.098 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:44:18.098 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:44:18.098 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.098 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.118 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.118 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(128) ev->cur.canvas.y(273) 01-05 10:44:18.118 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.118 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:18.118 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(93) ev->cur.canvas.y(273) 01-05 10:44:18.118 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:18.118 : WARN / W_HOME ( 712 : 712 ) : index.c: index_show(299) > is_paused:0 show VI:1 visibility:0 vi:(nil) 01-05 10:44:18.118 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3616 _elm_scroll_hold_animator() [DDO] obj(45bb8750), locked_x(0) 01-05 10:44:18.118 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3842 _elm_scroll_hold_animator() [DDO] obj(45bb8750) 01-05 10:44:18.118 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.118 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.133 : ERROR / EFL ( 712 : 712 ) : evas_main<712> evas_events.c:1258 evas_event_feed_mouse_up() ButtonEvent:up time=896098 button=1 downs=0 01-05 10:44:18.138 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:2277 _elm_scroll_post_event_up() [DDO] lock set false. : obj(45bb8750), type(elm_scroller) 01-05 10:44:18.138 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.143 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.153 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.153 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.168 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.168 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.183 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.183 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.198 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.198 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.218 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.218 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.233 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:44:18.233 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:44:18.233 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.233 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.253 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.253 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.278 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:18.278 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:18.283 : WARN / wnotib ( 712 : 712 ) : w-notification-board-noti-manager.c: wnotib_noti_manager_notiboard_vi_rest_time_cb(1596) > No postponed update. 01-05 10:44:18.283 : INFO / efl-extension ( 712 : 712 ) : efl_extension_circle_object_scroller.c: _eext_circle_object_scroller_scroll_animatioin_stop_cb(501) > [0x45bb8750 : elm_scroller] CurrentPage(2) 01-05 10:44:18.308 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __widget_pause(998) > widget_pause 01-05 10:44:18.308 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppPause(717) > 01-05 10:44:18.308 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:44:18.308 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:44:18.308 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:44:18.308 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:44:18.308 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:44:18.308 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:44:18.308 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:44:18.308 : ERROR / watchface-viewer ( 752 : 752 ) : viewer-group.cpp: RenewClickDownState(473) > Clear all ClickDownState as initial value 01-05 10:44:18.423 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _home_scroll_cb(564) > scroll,done 01-05 10:44:18.458 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:44:18.458 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:44:18.458 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:44:18.458 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnCheckRemotePort(115) > _MessagePortStub::OnCheckRemotePort. 01-05 10:44:18.458 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(207) > _MessagePortService::CheckRemotePort 01-05 10:44:18.458 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:44:18.458 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(220) > Check a remote message port: [com.samsung.w-music-player.music-control-service:music-control-service-request-message-port] 01-05 10:44:18.458 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:44:18.463 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:44:18.463 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:44:18.463 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:44:18.463 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnSendMessage(126) > MessagePort OnSendMessage 01-05 10:44:18.463 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(291) > _MessagePortService::SendMessage 01-05 10:44:18.463 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:44:18.463 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(299) > Sends a message to a remote message port [com.samsung.w-music-player.music-control-service:music-control-service-request-message-port] 01-05 10:44:18.463 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: SendMessage(138) > MessagePort SendMessage 01-05 10:44:18.463 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: SendResponse(884) > _MessagePortIpcServer::SendResponse 01-05 10:44:18.463 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:44:18.463 : ERROR / CAPI_APPFW_APP_CONTROL ( 827 : 827 ) : app_control.c: app_control_error(133) > [app_control_get_caller] INVALID_PARAMETER(0xffffffea) : invalid app_control handle type 01-05 10:44:18.463 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-service.c: _music_control_service_pasre_request(405) > [TID:827] value = [true] 01-05 10:44:18.463 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __request_handler(639) > __request_handler: 14 01-05 10:44:18.473 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __send_result_to_client(83) > __send_result_to_client, pid: 712 01-05 10:44:18.478 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-message.c: music_control_message_send_media_changed_ind(229) > [TID:827] [MUSIC_PLAYER_EVENT] 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnCheckRemotePort(115) > _MessagePortStub::OnCheckRemotePort. 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(207) > _MessagePortService::CheckRemotePort 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(220) > Check a remote message port: [com.samsung.w-home:music-control-service-message-port] 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnSendMessage(126) > MessagePort OnSendMessage 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(291) > _MessagePortService::SendMessage 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(299) > Sends a message to a remote message port [com.samsung.w-home:music-control-service-message-port] 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: SendMessage(138) > MessagePort SendMessage 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: SendResponse(884) > _MessagePortIpcServer::SendResponse 01-05 10:44:18.483 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:44:18.483 : WARN / W_HOME ( 712 : 712 ) : clock_shortcut.c: _music_service_messageport_cb(361) > mode:local state:paused 01-05 10:44:18.483 : ERROR / W_HOME ( 712 : 712 ) : clock_shortcut.c: _mp_state_get(104) > (s_info.music_service.state != 1) -> _mp_state_get() return 01-05 10:44:18.488 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-message.c: music_control_message_send_player_state_changed_ind(254) > [TID:827] [MUSIC_PLAYER_EVENT] 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnCheckRemotePort(115) > _MessagePortStub::OnCheckRemotePort. 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(207) > _MessagePortService::CheckRemotePort 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(220) > Check a remote message port: [com.samsung.w-home:music-control-service-message-port] 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnSendMessage(126) > MessagePort OnSendMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(291) > _MessagePortService::SendMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(299) > Sends a message to a remote message port [com.samsung.w-home:music-control-service-message-port] 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: SendMessage(138) > MessagePort SendMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: SendResponse(884) > _MessagePortIpcServer::SendResponse 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:44:18.493 : INFO / TIZEN_N_SOUND_MANAGER ( 827 : 827 ) : sound_manager.c: sound_manager_get_volume(84) > returns : type=4, volume=0, ret=0x80000241 01-05 10:44:18.493 : ERROR / TIZEN_N_SOUND_MANAGER ( 827 : 827 ) : sound_manager_private.c: __convert_sound_manager_error_code(98) > [sound_manager_get_volume] INTERNAL (0xfe6a0001): mm_error(0x80000241) 01-05 10:44:18.493 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-sound-manager.c: music_control_sound_mgr_get_volume(108) > [TID:827] sound_manager_get_volume() .. [0xfe6a0001] 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnCheckRemotePort(115) > _MessagePortStub::OnCheckRemotePort. 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(207) > _MessagePortService::CheckRemotePort 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(220) > Check a remote message port: [com.samsung.w-home:music-control-service-message-port] 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnSendMessage(126) > MessagePort OnSendMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(291) > _MessagePortService::SendMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(299) > Sends a message to a remote message port [com.samsung.w-home:music-control-service-message-port] 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: SendMessage(138) > MessagePort SendMessage 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: SendResponse(884) > _MessagePortIpcServer::SendResponse 01-05 10:44:18.493 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:44:18.493 : WARN / W_HOME ( 712 : 712 ) : clock_shortcut.c: _music_service_messageport_cb(361) > mode:local state:paused 01-05 10:44:18.493 : ERROR / W_HOME ( 712 : 712 ) : clock_shortcut.c: _mp_state_get(104) > (s_info.music_service.state != 1) -> _mp_state_get() return 01-05 10:44:18.788 : WARN / W_HOME ( 712 : 712 ) : index.c: index_hide(337) > hide VI:1 visibility:1 vi:(nil) 01-05 10:44:20.643 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:20.643 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:44:20.643 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:44:20.643 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:25.693 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:25.693 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:44:25.693 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:44:25.693 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:26.333 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:26.333 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(179) ev->cur.canvas.y(78) 01-05 10:44:26.333 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:26.333 : ERROR / EFL ( 712 : 712 ) : evas_main<712> evas_events.c:994 evas_event_feed_mouse_down() ButtonEvent:down time=904304 button=1 downs=1 01-05 10:44:26.333 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:26.333 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(177) ev->cur.canvas.y(78) 01-05 10:44:26.333 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:26.343 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:26.343 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(176) ev->cur.canvas.y(79) 01-05 10:44:26.343 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:26.353 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:26.353 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(175) ev->cur.canvas.y(80) 01-05 10:44:26.353 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:26.368 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:26.368 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(174) ev->cur.canvas.y(81) 01-05 10:44:26.368 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:26.373 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:26.373 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(174) ev->cur.canvas.y(82) 01-05 10:44:26.373 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:26.388 : ERROR / EFL ( 777 : 777 ) : evas_main<777> evas_events.c:994 evas_event_feed_mouse_down() ButtonEvent:down time=904297 button=1 downs=1 01-05 10:44:26.393 : ERROR / EFL ( 777 : 777 ) : evas_main<777> evas_object_main.c:1353 evas_object_color_set() Evas only handles pre multiplied colors! 01-05 10:44:26.398 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:26.398 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(173) ev->cur.canvas.y(83) 01-05 10:44:26.398 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:26.403 : ERROR / EFL ( 777 : 777 ) : evas_main<777> evas_object_main.c:1358 evas_object_color_set() Evas only handles pre multiplied colors! 01-05 10:44:26.403 : ERROR / EFL ( 777 : 777 ) : evas_main<777> evas_object_main.c:1363 evas_object_color_set() Evas only handles pre multiplied colors! 01-05 10:44:26.408 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:26.408 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(171) ev->cur.canvas.y(83) 01-05 10:44:26.408 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:26.433 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3964 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), block(2) 01-05 10:44:26.433 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3978 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), ev->cur.canvas.x(168) ev->cur.canvas.y(83) 01-05 10:44:26.438 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:3979 _elm_scroll_mouse_move_event_cb() [DDO] obj(45bb8750), hold(0) freeze(0) 01-05 10:44:26.443 : ERROR / EFL ( 712 : 712 ) : evas_main<712> evas_events.c:1258 evas_event_feed_mouse_up() ButtonEvent:up time=904402 button=1 downs=0 01-05 10:44:26.458 : ERROR / EFL ( 777 : 777 ) : evas_main<777> evas_events.c:1258 evas_event_feed_mouse_up() ButtonEvent:up time=904416 button=1 downs=0 01-05 10:44:26.458 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __request_handler(639) > __request_handler: 0 01-05 10:44:26.458 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: _start_app(1658) > caller pid : 777 01-05 10:44:26.468 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __nofork_processing(1137) > __nofork_processing, cmd: 0, pid: 712 01-05 10:44:26.468 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __reply_handler(908) > listen fd(29) , send fd(28), pid(712), cmd(0) 01-05 10:44:26.473 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: RESET State: RUNNING 01-05 10:44:26.473 : INFO / CAPI_APPFW_APPLICATION ( 712 : 712 ) : app_main.c: app_appcore_reset(245) > app_appcore_reset 01-05 10:44:26.473 : WARN / W_HOME ( 712 : 712 ) : main.c: _app_control(1713) > Service value : launch_apps 01-05 10:44:26.473 : WARN / W_HOME ( 712 : 712 ) : move.c: move_move_to_apps(216) > move to apps 01-05 10:44:26.473 : WARN / W_HOME ( 712 : 712 ) : rotary.c: rotary_attach(138) > rotary_attach:0x45c7b408 01-05 10:44:26.473 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(283) > eext_rotary_object_event_activated_set : 0x45c7b408, elm_layout, _activated_obj : 0x45bbacd0, activated : 1 01-05 10:44:26.473 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(291) > Activation delete!!!! 01-05 10:44:26.473 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _move_module_anim_start_cb(635) > state: 0 -> 1 01-05 10:44:26.473 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:3, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:26.473 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:26.488 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(479) > Legacy lifecycle: 1 01-05 10:44:26.488 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _apptray_visibility_cb(578) > apps,show,start 01-05 10:44:26.488 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _apptray_visibility_cb(596) > state: 1 -> 0 01-05 10:44:26.488 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:26.488 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:0, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:26.488 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:26.488 : WARN / W_HOME ( 712 : 712 ) : noti_broker.c: _apptray_visibility_cb(712) > apps,show,start 01-05 10:44:26.488 : WARN / W_HOME ( 712 : 712 ) : noti_broker.c: noti_broker_event_fire_to_plugin(852) > source:1 event:80002 01-05 10:44:26.488 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_view_event_handler(1069) > Home view event: 0x80002 01-05 10:44:26.488 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_view_event_handler(1145) > Unhandled type: 0x80002 01-05 10:44:26.768 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _move_module_anim_end_cb(649) > state: 1 -> 0 01-05 10:44:26.768 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:3, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:26.768 : WARN / W_HOME ( 712 : 712 ) : rotary.c: rotary_deattach(156) > rotary_deattach:0x45c7b408 01-05 10:44:26.768 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(235) > In 01-05 10:44:26.768 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(240) > callback del 0x45c7b408, elm_layout, func : 0x40049841 01-05 10:44:26.768 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(248) > Removed cb from callbacks 01-05 10:44:26.768 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(266) > Freed cb 01-05 10:44:26.768 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(273) > done 01-05 10:44:26.768 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(283) > eext_rotary_object_event_activated_set : 0x45bbacd0, elm_box, _activated_obj : 0x45c7b408, activated : 1 01-05 10:44:26.768 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(291) > Activation delete!!!! 01-05 10:44:26.768 : ERROR / wnotib ( 712 : 712 ) : w-notification-board-action-drawer.c: wnotib_action_drawer_hidden_get(4030) > [NULL==g_wnotib_action_drawer_data] msg Drawer not initialized. 01-05 10:44:26.768 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_scroller_event_handler(1001) > No second depth view available. 01-05 10:44:26.768 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _apptray_visibility_cb(578) > apps,show 01-05 10:44:26.768 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _apptray_visibility_cb(596) > state: 1 -> 1 01-05 10:44:26.768 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:1 win_state:0(1) pm_state:1 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:26.768 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:0, app_state:1 win_state:0(1) pm_state:1 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:26.768 : WARN / W_HOME ( 712 : 712 ) : main.c: home_pause(751) > clock/widget paused 01-05 10:44:26.773 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:1 win_state:0(1) pm_state:1 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:26.773 : WARN / APPS ( 712 : 712 ) : apps_main.c: _time_changed_cb(293) > date : 5->5 01-05 10:44:26.773 : WARN / W_HOME ( 712 : 712 ) : rotary.c: rotary_attach(138) > rotary_attach:0x451252f0 01-05 10:44:26.773 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(283) > eext_rotary_object_event_activated_set : 0x451252f0, elm_layout, _activated_obj : 0x45bbacd0, activated : 1 01-05 10:44:26.773 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(291) > Activation delete!!!! 01-05 10:44:26.773 : WARN / W_HOME ( 712 : 712 ) : noti_broker.c: _apptray_visibility_cb(712) > apps,show 01-05 10:44:26.773 : WARN / W_HOME ( 712 : 712 ) : noti_broker.c: noti_broker_event_fire_to_plugin(852) > source:1 event:80000 01-05 10:44:26.773 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_view_event_handler(1069) > Home view event: 0x80000 01-05 10:44:26.773 : INFO / wnotib ( 712 : 712 ) : w-notification-board-noti-manager.c: wnotib_noti_manager_app_tray_changed(1602) > is_app_tray_displayed: 1 01-05 10:44:26.773 : ERROR / APPS ( 712 : 712 ) : apps_main.c: apps_main_resume(585) > resumed already 01-05 10:44:26.778 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4507) > [BackGestureSetProperty] atom=_E_MOVE_ENABLE_DISABLE_BACK_GESTURE, value=0, No apps display 01-05 10:44:26.778 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4502) > [BackGestureSetProperty] atom=_E_MOVE_ENABLE_DISABLE_BACK_GESTURE, value=1, Apps display 01-05 10:44:26.778 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4502) > [BackGestureSetProperty] atom=_E_MOVE_ENABLE_DISABLE_BACK_GESTURE, value=1, Apps display 01-05 10:44:26.778 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4502) > [BackGestureSetProperty] atom=_E_MOVE_ENABLE_DISABLE_BACK_GESTURE, value=1, Apps display 01-05 10:44:26.943 : WARN / W_HOME ( 712 : 712 ) : index.c: index_hide(337) > hide VI:1 visibility:0 vi:(nil) 01-05 10:44:27.478 : WARN / AUL_AMD ( 510 : 510 ) : amd_key.c: _key_ungrab(254) > fail(-1) to ungrab key(XF86Stop) 01-05 10:44:27.478 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __grab_timeout_handler(1361) > back key ungrab error 01-05 10:44:27.908 : INFO / GESTURE ( 139 : 139 ) : gesture.c: GestureRecognize(2947) > disable_home_back_gesture=0, disable_apps_back_gesture=1, disable back key!!! 01-05 10:44:27.913 : ERROR / EFL ( 712 : 712 ) : evas_main<712> evas_events.c:994 evas_event_feed_mouse_down() ButtonEvent:down time=905883 button=1 downs=1 01-05 10:44:27.913 : WARN / APPS ( 712 : 712 ) : AppsViewNecklace.cpp: touchPressed(1213) > TOUCH [24, 169] 01-05 10:44:28.033 : ERROR / EFL ( 712 : 712 ) : evas_main<712> evas_events.c:1258 evas_event_feed_mouse_up() ButtonEvent:up time=906006 button=1 downs=0 01-05 10:44:28.033 : WARN / APPS ( 712 : 712 ) : AppsViewNecklace.cpp: touchReleased(1524) > TOUCH [24, 169]->[31, 159] 01-05 10:44:28.033 : WARN / APPS ( 712 : 712 ) : AppsViewNecklace.cpp: runFocusAni(2886) > __isFocusNext[0], __isFocusPrev[0], __isFocusRecent[0], nNewFocus[22] 01-05 10:44:28.033 : WARN / APPS ( 712 : 712 ) : AppsItem.cpp: onItemClicked(362) > onItemClicked[0,22] 01-05 10:44:28.033 : ERROR / APPS ( 712 : 712 ) : effect.c: apps_effect_play_sound(86) > effect_info.sound_status: [0] 01-05 10:44:28.033 : WARN / APPS ( 712 : 712 ) : AppsItem.cpp: onItemClicked(381) > item(basicnativeapplication) launched, open(0) 01-05 10:44:28.038 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __request_handler(639) > __request_handler: 0 01-05 10:44:28.038 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: _start_app(1658) > caller pid : 712 01-05 10:44:28.053 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __nofork_processing(1137) > __nofork_processing, cmd: 0, pid: 5660 01-05 10:44:28.053 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __reply_handler(908) > listen fd(29) , send fd(28), pid(5660), cmd(0) 01-05 10:44:28.053 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(429) > [APP 5660] Event: RESET State: PAUSED 01-05 10:44:28.053 : INFO / CAPI_APPFW_APPLICATION ( 5660 : 5660 ) : app_main.c: _ui_app_appcore_reset(645) > app_appcore_reset 01-05 10:44:28.053 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(479) > Legacy lifecycle: 0 01-05 10:44:28.053 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(481) > [APP 5660] App already running, raise the window 01-05 10:44:28.063 : ERROR / E17 ( 418 : 418 ) : e_manager.c: _e_manager_cb_client_message(1506) > ACTIVE REQUEST(0x05200002) 01-05 10:44:28.068 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(485) > [APP 5660] Call the resume_cb 01-05 10:44:28.068 : INFO / CAPI_APPFW_APPLICATION ( 5660 : 5660 ) : app_main.c: _ui_app_appcore_resume(628) > app_appcore_resume 01-05 10:44:28.073 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _ecore_x_message_cb(403) > state: 0 -> 1 01-05 10:44:28.073 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:1 win_state:1(1) pm_state:1 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 0, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:28.073 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:1 win_state:1(1) pm_state:1 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 0, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:28.073 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:1 win_state:1(1) pm_state:1 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 0, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:28.073 : WARN / W_HOME ( 712 : 712 ) : main.c: _ecore_x_message_cb(1228) > main_info.is_win_on_top: 0 01-05 10:44:28.073 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4502) > [BackGestureSetProperty] atom=_E_MOVE_ENABLE_DISABLE_BACK_GESTURE, value=1, Apps display 01-05 10:44:28.073 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4507) > [BackGestureSetProperty] atom=_E_MOVE_ENABLE_DISABLE_BACK_GESTURE, value=0, No apps display 01-05 10:44:28.118 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _window_visibility_cb(448) > Window [0x2400003] is now visible(1) 01-05 10:44:28.118 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _window_visibility_cb(458) > state: 1 -> 0 01-05 10:44:28.118 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:1 win_state:1(0) pm_state:1 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 0, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:28.118 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(333) > appcore paused manually 01-05 10:44:28.118 : WARN / W_HOME ( 712 : 712 ) : main.c: home_appcore_pause(717) > Home Appcore Paused 01-05 10:44:28.118 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _app_pause_cb(372) > state: 1 -> 2 01-05 10:44:28.118 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:1(0) pm_state:1 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 0, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:28.118 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:0, app_state:2 win_state:1(0) pm_state:1 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 0, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:28.118 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:2 win_state:1(0) pm_state:1 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 0, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:28.118 : WARN / W_HOME ( 712 : 712 ) : rotary.c: rotary_deattach(156) > rotary_deattach:0x451252f0 01-05 10:44:28.118 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(235) > In 01-05 10:44:28.118 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(240) > callback del 0x451252f0, elm_layout, func : 0x40049841 01-05 10:44:28.118 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(248) > Removed cb from callbacks 01-05 10:44:28.118 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(266) > Freed cb 01-05 10:44:28.118 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(273) > done 01-05 10:44:28.118 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(283) > eext_rotary_object_event_activated_set : 0x45bbacd0, elm_box, _activated_obj : 0x451252f0, activated : 1 01-05 10:44:28.118 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(291) > Activation delete!!!! 01-05 10:44:28.118 : ERROR / wnotib ( 712 : 712 ) : w-notification-board-action-drawer.c: wnotib_action_drawer_hidden_get(4030) > [NULL==g_wnotib_action_drawer_data] msg Drawer not initialized. 01-05 10:44:28.118 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_scroller_event_handler(1001) > No second depth view available. 01-05 10:44:28.123 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(429) > [APP 5660] Event: RESUME State: RUNNING 01-05 10:44:28.128 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:44:28.128 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:44:28.128 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:44:28.128 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnCheckRemotePort(115) > _MessagePortStub::OnCheckRemotePort. 01-05 10:44:28.128 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(207) > _MessagePortService::CheckRemotePort 01-05 10:44:28.128 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:44:28.128 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: CheckRemotePort(220) > Check a remote message port: [com.samsung.w-music-player.music-control-service:music-control-service-request-message-port] 01-05 10:44:28.128 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:44:28.133 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: OnReadMessage(739) > _MessagePortIpcServer::OnReadMessage 01-05 10:44:28.133 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: HandleReceivedMessage(578) > _MessagePortIpcServer::HandleReceivedMessage 01-05 10:44:28.133 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnIpcRequestReceived(147) > MessagePort message received 01-05 10:44:28.133 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: OnSendMessage(126) > MessagePort OnSendMessage 01-05 10:44:28.133 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(291) > _MessagePortService::SendMessage 01-05 10:44:28.133 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: GetKey(365) > _MessagePortService::GetKey 01-05 10:44:28.133 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortService.cpp: SendMessage(299) > Sends a message to a remote message port [com.samsung.w-music-player.music-control-service:music-control-service-request-message-port] 01-05 10:44:28.133 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortStub.cpp: SendMessage(138) > MessagePort SendMessage 01-05 10:44:28.133 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: SendResponse(884) > _MessagePortIpcServer::SendResponse 01-05 10:44:28.133 : INFO / MESSAGE_PORT ( 448 : 499 ) : MessagePortIpcServer.cpp: Send(847) > _MessagePortIpcServer::Stop 01-05 10:44:28.133 : ERROR / CAPI_APPFW_APP_CONTROL ( 827 : 827 ) : app_control.c: app_control_error(133) > [app_control_get_caller] INVALID_PARAMETER(0xffffffea) : invalid app_control handle type 01-05 10:44:28.133 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-service.c: _music_control_service_pasre_request(405) > [TID:827] value = [false] 01-05 10:44:28.138 : WARN / W_HOME ( 712 : 712 ) : main.c: _window_visibility_cb(1195) > Window [0x2400003] is now visible(1) 01-05 10:44:28.138 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4507) > [BackGestureSetProperty] atom=_E_MOVE_ENABLE_DISABLE_BACK_GESTURE, value=0, No apps display 01-05 10:44:28.138 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4507) > [BackGestureSetProperty] atom=_E_MOVE_ENABLE_DISABLE_BACK_GESTURE, value=0, No apps display 01-05 10:44:28.138 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: PAUSE State: RUNNING 01-05 10:44:28.143 : INFO / CAPI_APPFW_APPLICATION ( 712 : 712 ) : app_main.c: app_appcore_pause(202) > app_appcore_pause 01-05 10:44:28.143 : WARN / W_HOME ( 712 : 712 ) : main.c: _appcore_pause_cb(690) > appcore pause 01-05 10:44:28.143 : ERROR / W_HOME ( 712 : 712 ) : main.c: _pause_cb(668) > paused already 01-05 10:44:28.198 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_ecore_x_event_visibility_changed_cb(609) > fully_obscured: 1 01-05 10:44:28.198 : ERROR / wnotib ( 712 : 712 ) : w-notification-board-action-drawer.c: wnotib_action_drawer_hidden_get(4030) > [NULL==g_wnotib_action_drawer_data] msg Drawer not initialized. 01-05 10:44:28.643 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: MEM_FLUSH State: PAUSED 01-05 10:44:30.723 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:30.723 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:44:30.723 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:44:30.723 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:33.153 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: MEM_FLUSH State: PAUSED 01-05 10:44:37.058 : ERROR / W_INDICATOR ( 694 : 694 ) : windicator_connection.c: _connection_icon_set(554) > [_connection_icon_set:554] Set Connection TYPE_NONE, show sw.icon_1 (13)(0) 01-05 10:44:37.063 : ERROR / W_INDICATOR ( 694 : 694 ) : windicator_connection.c: _packet_type_changed_cb(899) > [_packet_type_changed_cb:899] WIFI MODE 01-05 10:44:40.863 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:40.863 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:44:40.863 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:44:40.863 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:42.663 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1111) > signal_lcd_status_signal: LCDOff 01-05 10:44:42.678 : WARN / W_HOME ( 712 : 712 ) : dbus.c: _dbus_message_recv_cb(204) > LCD off 01-05 10:44:42.678 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_del(151) > timer del 01-05 10:44:42.678 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_enable(133) > 1 01-05 10:44:42.678 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _lcd_off_cb(699) > lcd state: 0 01-05 10:44:42.678 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:1(0) pm_state:0 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:42.683 : INFO / SCONTEXT-LIB ( 701 : 701 ) : scontext.c: remove_changed_cb(145) > UnSet Changed CB: 42 01-05 10:44:42.688 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1470) > [_on_lcd_signal_receive_cb:1470] _on_lcd_signal_receive_cb, 1470, Pre LCD off by [timeout] 01-05 10:44:42.688 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _pre_lcd_off(1254) > [_pre_lcd_off:1254] Will LCD OFF as wake_up_setting[1] 01-05 10:44:42.688 : ERROR / STARTER ( 688 : 688 ) : scontext_util.c: scontext_util_handle_lock_state(64) > [scontext_util_handle_lock_state:64] wear state[0],bPossible [0] 01-05 10:44:42.688 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _check_reserved_popup_status(260) > [_check_reserved_popup_status:260] Current reserved apps status : 0 01-05 10:44:42.688 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _check_reserved_apps_status(296) > [_check_reserved_apps_status:296] Current reserved apps status : 0 01-05 10:44:42.973 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-consumer-control.c: _music_control_consumer_display_state_changed_cb(435) > [TID:827] [MUSIC_PLAYER_EVENT]DISPLAY_STATE_SCREEN_OFF 01-05 10:44:43.023 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(429) > [APP 5660] Event: PAUSE State: RUNNING 01-05 10:44:43.028 : INFO / CAPI_APPFW_APPLICATION ( 5660 : 5660 ) : app_main.c: _ui_app_appcore_pause(611) > app_appcore_pause 01-05 10:44:43.043 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1481) > [_on_lcd_signal_receive_cb:1481] _on_lcd_signal_receive_cb, 1481, Post LCD off by [timeout] 01-05 10:44:43.043 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1380) > [_post_lcd_off:1380] LCD OFF as reserved app[(null)] alpm mode[0] 01-05 10:44:43.048 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1387) > [_post_lcd_off:1387] Current reserved apps status : 0 01-05 10:44:43.048 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_off(1405) > [_post_lcd_off:1405] raise homescreen after 10 sec. home_visible[0] 01-05 10:44:43.083 : INFO / SHealth_Common ( 1050 : 1050 ) : SystemUtil.cpp: OnDeviceStatusChanged(676) > lcdState:3 01-05 10:44:43.083 : INFO / SHealth_Service ( 1050 : 1050 ) : SHealthServiceController.cpp: OnSystemUtilLcdStateChanged(671) > ### 01-05 10:44:43.108 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1206) > [SVOICE] Wake up Disable start 01-05 10:44:43.163 : WARN / ALARM_MANAGER ( 688 : 688 ) : alarm-lib.c: alarmmgr_add_alarm_withcb(1157) > trigger_at_time(10), start(5-1-2016, 10:44:53), repeat(1), interval(10), type(-1073741822) 01-05 10:44:43.188 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1209) > [SVOICE] Wake up Disable end. (ret: 0x0) 01-05 10:44:43.188 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_wakeup_enable] ERROR_NONE (0x00000000) 01-05 10:44:43.248 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager-schedule.c: _alarm_next_duetime(497) > alarm_id: 487164114, next duetime: 1451970893 01-05 10:44:43.248 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_add_to_list(377) > [alarm-server]: After add alarm_id(487164114) 01-05 10:44:43.248 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_create(943) > [alarm-server]:alarm_context.c_due_time(1452009276), due_time(1451970893) 01-05 10:44:43.248 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(229) > [alarm-server]ALARM_CLEAR ioctl is successfully done. 01-05 10:44:43.248 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(236) > Setted RTC Alarm date/time is 5-1-2016, 05:14:53 (UTC). 01-05 10:44:43.248 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(251) > [alarm-server]RTC ALARM_SET ioctl is successfully done. 01-05 10:44:44.563 : INFO / RESOURCED ( 644 : 644 ) : logging.c: logging_send_signal_to_data(1097) > [logging_send_signal_to_data,1097] send signal to logging data thread 01-05 10:44:44.563 : INFO / RESOURCED ( 644 : 644 ) : logging.c: logging_send_signal_to_update(1177) > [logging_send_signal_to_update,1177] send signal to logging update thread 01-05 10:44:45.913 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:45.913 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:44:45.913 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:44:45.913 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:51.112 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:51.112 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854 01-05 10:44:51.112 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E 01-05 10:44:51.112 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:51.902 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(429) > [APP 5660] Event: MEM_FLUSH State: PAUSED 01-05 10:44:52.997 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_handler_idle(1362) > Lock the display not to enter LCD OFF 01-05 10:44:53.092 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __display_lock_state(1690) > Lock LCD OFF is successfully done 01-05 10:44:53.157 : ERROR / RESOURCED ( 644 : 644 ) : freezer-process.c: freezer_process_pid_set(146) > [freezer_process_pid_set,146] Cant find process info for 688 01-05 10:44:53.172 : WARN / ALARM_MANAGER ( 688 : 688 ) : alarm-lib.c: __handle_expiry_method_call(154) > [alarm-lib] : Alarm expired for [ALARM.astarter] : Alarm id [487164114] 01-05 10:44:53.172 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: __starter_clock_mgr_homescreen_alarm_cb(855) > [__starter_clock_mgr_homescreen_alarm_cb:855] homescreen alarm timer expired [487164114] 01-05 10:44:53.177 : WARN / AUL_AMD ( 510 : 510 ) : amd_request.c: __request_handler(639) > __request_handler: 0 01-05 10:44:53.177 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: _start_app(1658) > caller pid : 688 01-05 10:44:53.192 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __nofork_processing(1137) > __nofork_processing, cmd: 0, pid: 712 01-05 10:44:53.197 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __reply_handler(908) > listen fd(29) , send fd(28), pid(712), cmd(0) 01-05 10:44:53.197 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: RESET State: PAUSED 01-05 10:44:53.197 : INFO / CAPI_APPFW_APPLICATION ( 712 : 712 ) : app_main.c: app_appcore_reset(245) > app_appcore_reset 01-05 10:44:53.197 : WARN / W_HOME ( 712 : 712 ) : main.c: _app_control(1713) > Service value : show_clock 01-05 10:44:53.197 : WARN / W_HOME ( 712 : 712 ) : main.c: _app_control(1749) > Show clock operation 01-05 10:44:53.197 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(228) > clock show 01-05 10:44:53.222 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_expired(1324) > alarm_id[487164114] is expired. 01-05 10:44:53.227 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(243) > home raise 01-05 10:44:53.227 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager-schedule.c: _alarm_next_duetime(497) > alarm_id: 487164114, next duetime: 1451970903 01-05 10:44:53.227 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(229) > [alarm-server]ALARM_CLEAR ioctl is successfully done. 01-05 10:44:53.232 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(236) > Setted RTC Alarm date/time is 5-1-2016, 05:15:03 (UTC). 01-05 10:44:53.232 : ERROR / W_HOME ( 712 : 712 ) : gesture.c: gesture_win_aux_set(396) > wm.policy.win.do.not.use.deiconify.approve:-1 01-05 10:44:53.232 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(251) > [alarm-server]RTC ALARM_SET ioctl is successfully done. 01-05 10:44:53.232 : WARN / W_HOME ( 712 : 712 ) : dbus_util.c: home_dbus_home_raise_signal_send(260) > Sending HOME RAISE signal, result:0 01-05 10:44:53.232 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_handler_idle(1388) > Unlock the display from LCD OFF 01-05 10:44:53.237 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(246) > home raise done 01-05 10:44:53.237 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _clock_show(253) > show clock 01-05 10:44:53.237 : WARN / W_HOME ( 712 : 712 ) : move.c: move_back_to_home_no_anim(274) > back to home no anim 01-05 10:44:53.237 : WARN / W_HOME ( 712 : 712 ) : rotary.c: rotary_attach(138) > rotary_attach:0x45c7b408 01-05 10:44:53.242 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(283) > eext_rotary_object_event_activated_set : 0x45c7b408, elm_layout, _activated_obj : 0x45bbacd0, activated : 1 01-05 10:44:53.242 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(291) > Activation delete!!!! 01-05 10:44:53.242 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _move_module_anim_start_cb(635) > state: 0 -> 1 01-05 10:44:53.247 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:3, app_state:2 win_state:1(0) pm_state:0 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:53.247 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:1(0) pm_state:0 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 1, apptray edit visibility : 0 01-05 10:44:53.247 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _move_module_anim_end_cb(649) > state: 1 -> 0 01-05 10:44:53.252 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:3, app_state:2 win_state:1(0) pm_state:0 home_visible:0 clock_visible:0 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.252 : WARN / W_HOME ( 712 : 712 ) : rotary.c: rotary_deattach(156) > rotary_deattach:0x45c7b408 01-05 10:44:53.257 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(235) > In 01-05 10:44:53.257 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(240) > callback del 0x45c7b408, elm_layout, func : 0x40049841 01-05 10:44:53.257 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(248) > Removed cb from callbacks 01-05 10:44:53.257 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(266) > Freed cb 01-05 10:44:53.257 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_callback_del(273) > done 01-05 10:44:53.262 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(283) > eext_rotary_object_event_activated_set : 0x45bbacd0, elm_box, _activated_obj : 0x45c7b408, activated : 1 01-05 10:44:53.262 : INFO / efl-extension ( 712 : 712 ) : efl_extension_rotary.c: eext_rotary_object_event_activated_set(291) > Activation delete!!!! 01-05 10:44:53.262 : ERROR / wnotib ( 712 : 712 ) : w-notification-board-action-drawer.c: wnotib_action_drawer_hidden_get(4030) > [NULL==g_wnotib_action_drawer_data] msg Drawer not initialized. 01-05 10:44:53.262 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_scroller_event_handler(1001) > No second depth view available. 01-05 10:44:53.262 : WARN / W_HOME ( 712 : 712 ) : scroller.c: _get_index_in_list(1902) > page:0x45c09520 idx:1 total10 exist:1 01-05 10:44:53.262 : ERROR / EFL ( 712 : 712 ) : elementary<712> elm_interface_scrollable.c:1270 _elm_scroll_origin_reverse_set() [DDO] obj(45bb8750), origin_x(0), origin_y(0) 01-05 10:44:53.267 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _clock_view_visible_cb(608) > state: 0 -> 1 01-05 10:44:53.272 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __display_unlock_state(1733) > Unlock LCD OFF is successfully done 01-05 10:44:53.272 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __alarm_remove_from_list(456) > [alarm-server]:Remove alarm id(487164114) 01-05 10:44:53.277 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(229) > [alarm-server]ALARM_CLEAR ioctl is successfully done. 01-05 10:44:53.277 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(236) > Setted RTC Alarm date/time is 5-1-2016, 15:54:36 (UTC). 01-05 10:44:53.277 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: __rtc_set(251) > [alarm-server]RTC ALARM_SET ioctl is successfully done. 01-05 10:44:53.277 : WARN / ALARM_MANAGER ( 505 : 505 ) : alarm-manager.c: alarm_manager_alarm_delete(2207) > alarm_id[487164114] is removed. 01-05 10:44:53.282 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:1(0) pm_state:0 home_visible:0 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.297 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2731) > tobj_item_01 is null 01-05 10:44:53.297 : INFO / ELM_RPANEL ( 712 : 712 ) : elm-rpanel.c: _panel_swap_effect(2786) > tobj_item_02 is null 01-05 10:44:53.297 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(479) > Legacy lifecycle: 1 01-05 10:44:53.302 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _apptray_visibility_cb(578) > apps,hide,start 01-05 10:44:53.302 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _apptray_visibility_cb(596) > state: 1 -> 0 01-05 10:44:53.302 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:1(0) pm_state:0 home_visible:0 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.302 : ERROR / E17 ( 418 : 418 ) : e_manager.c: _e_manager_cb_client_message(1506) > ACTIVE REQUEST(0x02400003) 01-05 10:44:53.302 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:0, app_state:2 win_state:1(0) pm_state:0 home_visible:0 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.302 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:2 win_state:1(0) pm_state:0 home_visible:0 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.302 : WARN / W_HOME ( 712 : 712 ) : noti_broker.c: _apptray_visibility_cb(712) > apps,hide,start 01-05 10:44:53.302 : WARN / W_HOME ( 712 : 712 ) : noti_broker.c: noti_broker_event_fire_to_plugin(852) > source:1 event:80002 01-05 10:44:53.302 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_view_event_handler(1069) > Home view event: 0x80002 01-05 10:44:53.302 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_view_event_handler(1145) > Unhandled type: 0x80002 01-05 10:44:53.302 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _apptray_visibility_cb(578) > apps,hide 01-05 10:44:53.302 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _apptray_visibility_cb(596) > state: 1 -> 0 01-05 10:44:53.302 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:1(0) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.307 : WARN / AUL_AMD ( 510 : 510 ) : amd_key.c: _key_ungrab(254) > fail(-1) to ungrab key(XF86Stop) 01-05 10:44:53.307 : WARN / AUL_AMD ( 510 : 510 ) : amd_launch.c: __e17_status_handler(2170) > back key ungrab error 01-05 10:44:53.307 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:0, app_state:2 win_state:1(0) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.307 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:2 win_state:1(0) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.307 : WARN / W_HOME ( 712 : 712 ) : noti_broker.c: _apptray_visibility_cb(712) > apps,hide 01-05 10:44:53.307 : WARN / W_HOME ( 712 : 712 ) : noti_broker.c: noti_broker_event_fire_to_plugin(852) > source:1 event:80001 01-05 10:44:53.307 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_view_event_handler(1069) > Home view event: 0x80001 01-05 10:44:53.307 : INFO / wnotib ( 712 : 712 ) : w-notification-board-noti-manager.c: wnotib_noti_manager_app_tray_changed(1602) > is_app_tray_displayed: 0 01-05 10:44:53.312 : ERROR / APPS ( 712 : 712 ) : apps_main.c: apps_main_pause(551) > paused already 01-05 10:44:53.332 : INFO / MALI ( 712 : 712 ) : egl_platform_x11_tizen.c: tizen_update_native_surface_private(183) > [EGL-X11] surface->[0x441f7c98] swap changed from sync to async 01-05 10:44:53.382 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __do_app(429) > [APP 5660] Event: PAUSE State: PAUSED 01-05 10:44:53.382 : INFO / APP_CORE ( 5660 : 5660 ) : appcore-efl.c: __visibility_cb(868) > LCD status is off, skip the AE_RESUME event 01-05 10:44:53.387 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _ecore_x_message_cb(403) > state: 1 -> 0 01-05 10:44:53.387 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:0(0) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.387 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:2 win_state:0(0) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.387 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:2 win_state:0(0) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.387 : WARN / W_HOME ( 712 : 712 ) : main.c: _ecore_x_message_cb(1228) > main_info.is_win_on_top: 1 01-05 10:44:53.392 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _window_visibility_cb(448) > Window [0x2400003] is now visible(0) 01-05 10:44:53.392 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _window_visibility_cb(458) > state: 0 -> 1 01-05 10:44:53.392 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:0(1) pm_state:0 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:53.392 : WARN / W_HOME ( 712 : 712 ) : main.c: _window_visibility_cb(1195) > Window [0x2400003] is now visible(0) 01-05 10:44:53.392 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __visibility_cb(855) > LCD status is off, skip the AE_RESUME event 01-05 10:44:53.392 : INFO / wnotib ( 712 : 712 ) : w-notification-board-broker-main.c: _wnotib_ecore_x_event_visibility_changed_cb(609) > fully_obscured: 0 01-05 10:44:53.392 : ERROR / wnotib ( 712 : 712 ) : w-notification-board-action-drawer.c: wnotib_action_drawer_hidden_get(4030) > [NULL==g_wnotib_action_drawer_data] msg Drawer not initialized. 01-05 10:44:53.392 : WARN / wnotib ( 712 : 712 ) : w-notification-board-noti-manager.c: wnotib_noti_manager_notiboard_vi_rest_time_cb(1596) > No postponed update. 01-05 10:44:53.427 : INFO / MALI ( 712 : 712 ) : egl_platform_x11_tizen.c: tizen_update_native_surface_private(174) > [EGL-X11] surface->[0x441f7c98] swap changed from async to sync 01-05 10:44:55.616 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found 01-05 10:44:55.616 : INFO / basicnativeapplication ( 5660 : 5660 ) : UUID[1] = 180F 01-05 10:44:55.621 : INFO / basicnativeapplication ( 5660 : 5660 ) : UUID[2] = 0555 01-05 10:44:55.621 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = AlphaeonPatch 01-05 10:44:55.621 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = C9:D4:67:84:5C:E7 01-05 10:44:55.621 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing 01-05 10:44:55.621 : INFO / basicnativeapplication ( 5660 : 5660 ) : Got our device 01-05 10:44:55.796 : INFO / basicnativeapplication ( 5660 : 5660 ) : Connected to our LE device. 01-05 10:44:55.856 : INFO / basicnativeapplication ( 5660 : 5660 ) : Client created 01-05 10:44:55.856 : INFO / basicnativeapplication ( 5660 : 5660 ) : Success 01-05 10:44:55.856 : INFO / basicnativeapplication ( 5660 : 5660 ) : bt_gatt_client_get_service is failed : -61 01-05 10:44:55.856 : ERROR / CAPI_NETWORK_BLUETOOTH ( 5660 : 5660 ) : bluetooth-gatt.c: bt_gatt_service_get_characteristic(1412) > [bt_gatt_service_get_characteristic] INVALID_PARAMETER(0xffffffea) 01-05 10:44:55.861 : INFO / basicnativeapplication ( 5660 : 5660 ) : bt_gatt_service_get_characteristic is failed : -22 01-05 10:44:56.191 : WARN / CRASH_MANAGER ( 6308 : 6312 ) : worker.c: worker_job(1199) > 11056606261731451970895 01-05 10:44:56.346 : INFO / AUL_AMD ( 510 : 510 ) : amd_main.c: __app_dead_handler(261) > __app_dead_handler, pid: 5660 01-05 10:44:59.263 : INFO / GESTURE ( 139 : 139 ) : gesture.c: GestureHandleKeyPressEvent(3711) > [GestureHandleKeyPressEvent] Ignore key press in DPMS off (devid:7) keycode=166 01-05 10:44:59.263 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1111) > signal_lcd_status_signal: LCDOn 01-05 10:44:59.263 : INFO / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __signal_lcd_status_handler(1130) > Call the time_tick_cb 01-05 10:44:59.263 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:44:59.263 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:44:59.263 : INFO / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(756) > set force update!! 01-05 10:44:59.263 : INFO / watchface-viewer ( 752 : 752 ) : viewer-image-file-loader.cpp: OnImageLoadingDoneIdlerCb(442) > ImagesLoadingDoneSignal().Emit(); 01-05 10:44:59.278 : WARN / W_HOME ( 712 : 712 ) : dbus.c: _dbus_message_recv_cb(186) > LCD on 01-05 10:44:59.278 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_set(161) > timer set 01-05 10:44:59.278 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_del(151) > timer del 01-05 10:44:59.278 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _apps_status_get(123) > apps status:0 01-05 10:44:59.278 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _lcd_on_cb(295) > move_to_clock:1 clock_visible:1 info->offtime:16681 01-05 10:44:59.278 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_schedule(211) > schedule, manual render 01-05 10:44:59.278 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _lcd_on_cb(691) > lcd state: 1 01-05 10:44:59.278 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:4, app_state:2 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:59.278 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(342) > appcore resumed manually 01-05 10:44:59.278 : WARN / W_HOME ( 712 : 712 ) : main.c: home_appcore_resume(708) > Home Appcore Resumed 01-05 10:44:59.283 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _app_resume_cb(355) > state: 2 -> 1 01-05 10:44:59.283 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:2, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:59.283 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:0, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:59.283 : WARN / W_HOME ( 712 : 712 ) : main.c: home_resume(729) > journal_appcore_app_fully_loaded called 01-05 10:44:59.283 : WARN / W_HOME ( 712 : 712 ) : main.c: home_resume(733) > clock/widget resumed 01-05 10:44:59.283 : WARN / W_HOME ( 712 : 712 ) : event_manager.c: _state_control(194) > control:1, app_state:1 win_state:0(1) pm_state:1 home_visible:1 clock_visible:1 tutorial_state:0 editing : 0, home_clocklist:0, addviewer:0 scrolling : 0, powersaving : 0, apptray state : 1, apptray visibility : 0, apptray edit visibility : 0 01-05 10:44:59.283 : INFO / GESTURE ( 139 : 139 ) : gesture.c: BackGestureSetProperty(4470) > [BackGestureSetProperty] atom=_E_MOVE_W_HOME_CLOCK_STATE, value=1, Clock display 01-05 10:44:59.298 : WARN / WATCH_CORE ( 752 : 752 ) : appcore-watch.c: __widget_resume(1009) > widget_resume 01-05 10:44:59.298 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppResume(725) > 01-05 10:44:59.298 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:44:59.298 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:44:59.303 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1448) > [_on_lcd_signal_receive_cb:1448] _on_lcd_signal_receive_cb, 1448, Pre LCD on by [powerkey] after screen off time [16681]ms 01-05 10:44:59.303 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _pre_lcd_on(1174) > [_pre_lcd_on:1174] Will LCD ON as reserved app[(null)] alpm mode[0] 01-05 10:44:59.308 : INFO / SCONTEXT-LIB ( 701 : 701 ) : scontext.c: context_add_changed_cb(211) > [SUCCESS] Set Changed CB: 42 (req_id=29) 01-05 10:44:59.313 : INFO / APP_CORE ( 712 : 712 ) : appcore-efl.c: __do_app(429) > [APP 712] Event: RESUME State: RUNNING 01-05 10:44:59.328 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_set_param(1238) > [SVOICE] set param [keyword length] : 0 01-05 10:44:59.338 : WARN / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_private.c: __convert_sound_manager_error_code(96) > [sound_manager_svoice_set_param] ERROR_NONE (0x00000000) 01-05 10:44:59.338 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1206) > [SVOICE] Wake up Enable start 01-05 10:44:59.378 : WARN / MUSIC_CONTROL_SERVICE ( 827 : 827 ) : music-control-consumer-control.c: _music_control_consumer_display_state_changed_cb(439) > [TID:827] [MUSIC_PLAYER_EVENT]DISPLAY_STATE_NORMAL 01-05 10:44:59.408 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _on_lcd_signal_receive_cb(1459) > [_on_lcd_signal_receive_cb:1459] _on_lcd_signal_receive_cb, 1459, Post LCD on by [powerkey] 01-05 10:44:59.408 : WARN / STARTER ( 688 : 688 ) : clock-mgr.c: _post_lcd_on(1220) > [_post_lcd_on:1220] LCD ON as reserved app[(null)] alpm mode[0] 01-05 10:44:59.443 : INFO / SHealth_Common ( 1050 : 1050 ) : SystemUtil.cpp: OnDeviceStatusChanged(676) > lcdState:1 01-05 10:44:59.443 : INFO / SHealth_Service ( 1050 : 1050 ) : SHealthServiceController.cpp: OnSystemUtilLcdStateChanged(671) > ### 01-05 10:44:59.453 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(pedometer_inactive_period), check retry err: -21/(2/No such file or directory). 01-05 10:44:59.453 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(pedometer_inactive_period) step(-17825744) failed(2 / No such file or directory) 01-05 10:44:59.453 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : pedometer_inactive_period error 01-05 10:44:59.458 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(inactive_10min_precaution_millisec), check retry err: -21/(2/No such file or directory). 01-05 10:44:59.458 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(inactive_10min_precaution_millisec) step(-17825744) failed(2 / No such file or directory) 01-05 10:44:59.463 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : inactive_10min_precaution_millisec error 01-05 10:44:59.468 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_check_retry_err(507) > key(inactive_before_10min_precaution_millisec), check retry err: -21/(2/No such file or directory). 01-05 10:44:59.473 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: _preference_get_key(1101) > _preference_get_key(inactive_before_10min_precaution_millisec) step(-17825744) failed(2 / No such file or directory) 01-05 10:44:59.478 : INFO / CAPI_WATCH_APPLICATION ( 752 : 752 ) : watch_app_main.c: _watch_core_time_tick(305) > _watch_core_time_tick 01-05 10:44:59.478 : ERROR / watchface-loader ( 752 : 752 ) : watchface-loader.cpp: OnAppTimeTick(744) > 01-05 10:44:59.478 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_disable_timer_cb(140) > timeout callback expired 01-05 10:44:59.478 : WARN / W_HOME ( 712 : 712 ) : gesture.c: _manual_render_enable(133) > 0 01-05 10:44:59.518 : ERROR / CAPI_APPFW_APPLICATION_PREFERENCE ( 1050 : 1050 ) : preference.c: preference_get_double(1214) > preference_get_double(1050) : inactive_before_10min_precaution_millisec error 01-05 10:44:59.618 : INFO / TIZEN_N_SOUND_MANAGER ( 1083 : 1083 ) : sound_manager_product.c: sound_manager_svoice_wakeup_enable(1209) > [SVOICE] Wake up Enable end. (ret: 0x0)
Shraddha Shravagi

Please delete this logcat if possible.

Shraddha Shravagi

Sorry for that unformatted log cat.

Search "basicnativeapplication" (100 hits in 1 file)
  D:\Projects\Aplheon\Alphaeon\Trunk\Mobile Application\Phase 2\Source Code\logsforgood code.txt (100 hits)
    Line 3: 01-05 10:43:10.560 : ERROR / PKGMGR_SERVER ( 5868 : 5868 ) : pkgmgr-server.c: req_cb(686) > req_id=[org.example.basicnativeapplication_1261304550], req_type=[12], pkg_type=[rpm], pkgid=[org.example.basicnativeapplication], args=[], cookie=[], backend_flag=[0]
    Line 3: 01-05 10:43:10.560 : ERROR / PKGMGR_SERVER ( 5868 : 5868 ) : pkgmgr-server.c: req_cb(686) > req_id=[org.example.basicnativeapplication_1261304550], req_type=[12], pkg_type=[rpm], pkgid=[org.example.basicnativeapplication], args=[], cookie=[], backend_flag=[0]
    Line 4: 01-05 10:43:10.575 : ERROR / PKGMGR ( 5866 : 5866 ) : pkgmgr.c: __check_sync_process(842) > file is can not remove[/tmp/org.example.basicnativeapplication, -1]
    Line 5: 01-05 10:43:10.585 : ERROR / PKGMGR_SERVER ( 5869 : 5869 ) : pkgmgr-server.c: queue_job(1954) > KILL/CHECK APP, pkgid=[org.example.basicnativeapplication]
    Line 281: 01-05 10:43:28.329 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: req_cb(686) > req_id=[org.example.basicnativeapplication_1279132066], req_type=[1], pkg_type=[rpm], pkgid=[org.example.basicnativeapplication], args=[/usr/etc/package-manager/backend/rpm '-k' 'org.example.basicnativeapplication_1279132066' '-r' 'org.example.basicnativeapplication'], cookie=[p/qDVwwX5JzZKrPzfRI+DORjXR8=], backend_flag=[0]
    Line 281: 01-05 10:43:28.329 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: req_cb(686) > req_id=[org.example.basicnativeapplication_1279132066], req_type=[1], pkg_type=[rpm], pkgid=[org.example.basicnativeapplication], args=[/usr/etc/package-manager/backend/rpm '-k' 'org.example.basicnativeapplication_1279132066' '-r' 'org.example.basicnativeapplication'], cookie=[p/qDVwwX5JzZKrPzfRI+DORjXR8=], backend_flag=[0]
    Line 281: 01-05 10:43:28.329 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: req_cb(686) > req_id=[org.example.basicnativeapplication_1279132066], req_type=[1], pkg_type=[rpm], pkgid=[org.example.basicnativeapplication], args=[/usr/etc/package-manager/backend/rpm '-k' 'org.example.basicnativeapplication_1279132066' '-r' 'org.example.basicnativeapplication'], cookie=[p/qDVwwX5JzZKrPzfRI+DORjXR8=], backend_flag=[0]
    Line 281: 01-05 10:43:28.329 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: req_cb(686) > req_id=[org.example.basicnativeapplication_1279132066], req_type=[1], pkg_type=[rpm], pkgid=[org.example.basicnativeapplication], args=[/usr/etc/package-manager/backend/rpm '-k' 'org.example.basicnativeapplication_1279132066' '-r' 'org.example.basicnativeapplication'], cookie=[p/qDVwwX5JzZKrPzfRI+DORjXR8=], backend_flag=[0]
    Line 282: 01-05 10:43:28.329 : ERROR / PKGMGR ( 6024 : 6024 ) : pkgmgr-internal.c: _get_type_from_zip(733) > can not access to [org.example.basicnativeapplication]
    Line 283: 01-05 10:43:28.329 : ERROR / PKGMGR_SERVER ( 6024 : 6024 ) : pkgmgr-server.c: __get_type_from_msg(364) > pkgtype is null for org.example.basicnativeapplication 
    Line 285: 01-05 10:43:28.339 : ERROR / PKGMGR_SERVER ( 6025 : 6025 ) : pkgmgr-server.c: queue_job(1820) > INSTALL start, pkg path=[org.example.basicnativeapplication]
    Line 289: 01-05 10:43:28.534 : WARN / W_HOME ( 712 : 712 ) : clock_event.c: _pkgmgr_event_cb(209) > Pkg:org.example.basicnativeapplication is being updateded:0
    Line 544: 01-05 10:43:37.841 : WARN / W_HOME ( 712 : 712 ) : clock_event.c: _pkgmgr_event_cb(238) > Pkg:org.example.basicnativeapplication is updated, need to check validation
    Line 632: 01-05 10:43:48.331 : ERROR / RESOURCED ( 644 : 644 ) : block.c: block_prelaunch_state(134) > [block_prelaunch_state,134] insert data org.example.basicnativeapplication, table num : 1
    Line 639: 01-05 10:43:48.466 : INFO / basicnativeapplication ( 5660 : 5660 ) : ggggggggggggggggggggggggggggggggggggggggggg
    Line 641: 01-05 10:43:48.471 : INFO / basicnativeapplication ( 5660 : 5660 ) : [bt_socket_set_connection_state_changed_cb] failed.

01-05 10:43:48.466 : ERROR / CAPI_NETWORK_BLUETOOTH ( 5660 : 5660 ) : bluetooth-gatt.c: bt_gatt_set_connection_state_changed_cb(542) > [bt_gatt_set_connection_state_changed_cb] NOT_INITIALIZED(0xfe400101)


    Line 644: 01-05 10:43:48.546 : ERROR / RESOURCED ( 644 : 644 ) : proc-main.c: proc_add_program_list(232) > [proc_add_program_list,232] not found ppi : org.example.basicnativeapplication
    Line 646: 01-05 10:43:48.666 : INFO / basicnativeapplication ( 5660 : 5660 ) : init bt
    Line 647: 01-05 10:43:48.756 : INFO / basicnativeapplication ( 5660 : 5660 ) : [bt_initialize]starting.
    Line 671: 01-05 10:43:49.391 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 672: 01-05 10:43:49.391 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 673: 01-05 10:43:49.391 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 674: 01-05 10:43:49.391 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 706: 01-05 10:43:51.056 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 707: 01-05 10:43:51.056 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE08794
    Line 708: 01-05 10:43:51.056 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:57:87
    Line 709: 01-05 10:43:51.056 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 712: 01-05 10:43:51.176 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 713: 01-05 10:43:51.176 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE08794
    Line 714: 01-05 10:43:51.176 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:57:87
    Line 715: 01-05 10:43:51.176 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 732: 01-05 10:43:51.291 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 733: 01-05 10:43:51.291 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 734: 01-05 10:43:51.291 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 735: 01-05 10:43:51.291 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 736: 01-05 10:43:51.381 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 737: 01-05 10:43:51.381 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE08794
    Line 738: 01-05 10:43:51.381 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:57:87
    Line 739: 01-05 10:43:51.381 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 741: 01-05 10:43:56.001 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 742: 01-05 10:43:56.001 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 743: 01-05 10:43:56.001 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 744: 01-05 10:43:56.001 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 755: 01-05 10:44:01.096 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 756: 01-05 10:44:01.096 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 757: 01-05 10:44:01.096 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 758: 01-05 10:44:01.096 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 759: 01-05 10:44:01.231 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 760: 01-05 10:44:01.231 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE08794
    Line 761: 01-05 10:44:01.231 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:57:87
    Line 762: 01-05 10:44:01.231 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 803: 01-05 10:44:06.041 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 804: 01-05 10:44:06.041 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 805: 01-05 10:44:06.041 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 806: 01-05 10:44:06.041 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 807: 01-05 10:44:10.743 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 808: 01-05 10:44:10.743 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 809: 01-05 10:44:10.743 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 810: 01-05 10:44:10.743 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 811: 01-05 10:44:15.789 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 812: 01-05 10:44:15.789 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 813: 01-05 10:44:15.789 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 814: 01-05 10:44:15.789 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 1146: 01-05 10:44:20.643 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 1147: 01-05 10:44:20.643 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 1148: 01-05 10:44:20.643 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 1149: 01-05 10:44:20.643 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 1150: 01-05 10:44:25.693 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 1151: 01-05 10:44:25.693 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 1152: 01-05 10:44:25.693 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 1153: 01-05 10:44:25.693 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 1254: 01-05 10:44:28.033 : WARN / APPS ( 712 : 712 ) : AppsItem.cpp: onItemClicked(381) >  item(basicnativeapplication) launched, open(0)
    Line 1323: 01-05 10:44:30.723 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 1324: 01-05 10:44:30.723 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 1325: 01-05 10:44:30.723 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 1326: 01-05 10:44:30.723 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 1330: 01-05 10:44:40.863 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 1331: 01-05 10:44:40.863 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 1332: 01-05 10:44:40.863 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 1333: 01-05 10:44:40.863 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 1367: 01-05 10:44:45.913 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 1368: 01-05 10:44:45.913 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 1369: 01-05 10:44:45.913 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 1370: 01-05 10:44:45.913 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 1371: 01-05 10:44:51.112 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 1372: 01-05 10:44:51.112 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = #IE065854      
    Line 1373: 01-05 10:44:51.112 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = 00:00:00:01:01:3E
    Line 1374: 01-05 10:44:51.112 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 1472: 01-05 10:44:55.616 : INFO / basicnativeapplication ( 5660 : 5660 ) : some info found
    Line 1473: 01-05 10:44:55.616 : INFO / basicnativeapplication ( 5660 : 5660 ) : UUID[1] = 180F
    Line 1474: 01-05 10:44:55.621 : INFO / basicnativeapplication ( 5660 : 5660 ) : UUID[2] = 0555
    Line 1475: 01-05 10:44:55.621 : INFO / basicnativeapplication ( 5660 : 5660 ) : Device name = AlphaeonPatch
    Line 1476: 01-05 10:44:55.621 : INFO / basicnativeapplication ( 5660 : 5660 ) : Addresse = C9:D4:67:84:5C:E7
    Line 1477: 01-05 10:44:55.621 : INFO / basicnativeapplication ( 5660 : 5660 ) : Comparing
    Line 1478: 01-05 10:44:55.621 : INFO / basicnativeapplication ( 5660 : 5660 ) : Got our device
    Line 1479: 01-05 10:44:55.796 : INFO / basicnativeapplication ( 5660 : 5660 ) : Connected to our LE device.
    Line 1480: 01-05 10:44:55.856 : INFO / basicnativeapplication ( 5660 : 5660 ) : Client created
    Line 1481: 01-05 10:44:55.856 : INFO / basicnativeapplication ( 5660 : 5660 ) : Success
    Line 1482: 01-05 10:44:55.856 : INFO / basicnativeapplication ( 5660 : 5660 ) : bt_gatt_client_get_service is failed : -61

01-05 10:44:55.856 : ERROR / CAPI_NETWORK_BLUETOOTH ( 5660 : 5660 ) : bluetooth-gatt.c: bt_gatt_service_get_characteristic(1412) > [bt_gatt_service_get_characteristic] INVALID_PARAMETER(0xffffffea)


    Line 1484: 01-05 10:44:55.861 : INFO / basicnativeapplication ( 5660 : 5660 ) : bt_gatt_service_get_characteristic is failed : -22

 

Sazzad Hissain Khan

main() is not a good place to  set bt_gatt_set_connection_state_changed_cb( _bt_gatt_connection_state_changed_cb, NULL);
If you have already set it in app_create you don't need to set it again.

From your log it seems client is created successfully but  bt_gatt_client_get_service is failed : -61 ().  And you should also keep in mind that if service is not found bt_gatt_service_get_characteristic will also throw an INVALID_PARAMETER error which is exactly the case you found in logcat.

Line 1479: 01-05 10:44:55.796 : INFO / basicnativeapplication ( 5660 : 5660 ) : Connected to our LE device.
Line 1480: 01-05 10:44:55.856 : INFO / basicnativeapplication ( 5660 : 5660 ) : Client created
Line 1481: 01-05 10:44:55.856 : INFO / basicnativeapplication ( 5660 : 5660 ) : Success
Line 1482: 01-05 10:44:55.856 : INFO / basicnativeapplication ( 5660 : 5660 ) : bt_gatt_client_get_service is failed : -61
01-05 10:44:55.856 : ERROR / CAPI_NETWORK_BLUETOOTH ( 5660 : 5660 ) : bluetooth-gatt.c: bt_gatt_service_get_characteristic(1412) > [bt_gatt_service_get_characteristic] INVALID_PARAMETER(0xffffffea)
Line 1484: 01-05 10:44:55.861 : INFO / basicnativeapplication ( 5660 : 5660 ) : bt_gatt_service_get_characteristic is failed : -22

Now if you look at the documentation of bt_gatt_client_get_service ( from https://developer.tizen.org/dev-guide/2.4/org.tizen.native.mobile.apireference/group__CAPI__NETWORK__BLUETOOTH__GATT__MODULE.html#gabe1f90f65bb903a47bdc1d42a3ccd4d5 ), you will see that,

Return values can be:
BT_ERROR_NONE - Successful 
BT_ERROR_INVALID_PARAMETER - Invalid parameter 
BT_ERROR_NO_DATA - No data available 
BT_ERROR_NOT_SUPPORTED - Not supported 


I think BT_ERROR_NO_DATA is the probable cause of your issue which happens if there is no service advertisement by Server side. Are you sure your Server is bradcasting with same service UUID?

Privilege need to use gatt and BLE is http://tizen.org/privilege/bluetooth

Regards,

Hissain

Shraddha Shravagi

Hello Hissain,

Thanks for reply.

I am using the privilage for bluetooth.

Yes the server is broadcasting battery service which I am trying to read.

Also I dont understand why I am getting 

    Line 641: 01-05 10:43:48.471 : INFO / basicnativeapplication ( 5660 : 5660 ) : [bt_socket_set_connection_state_changed_cb] failed.

it is not registering to the callback for bt connection state change.
 
I want to know if technically it is possible for gear to communicate with an device acting in a central role. Or as a client to communicate with Gatt server for current tizen 2.3.1
 
Thanks & Regards,
Shraddha
Sazzad Hissain Khan

I have already suggested you,

main() is not a good place to  set bt_gatt_set_connection_state_changed_cb( _bt_gatt_connection_state_changed_cb, NULL);
If you have already set it in app_create you don't need to set it again. Please set it from app_create as in documentation. Let us know if it resolve the error

Line 641: 01-05 10:43:48.471 : INFO / basicnativeapplication ( 5660 : 5660 ) : [bt_socket_set_connection_state_changed_cb] failed.

And yes, technically it is possible for gear to communicate with an device acting in a central role. Follow the instruction in documentation.

if it cannot be solved here, we will talk in our internal Mosaik forum details and let you know the update.

 

Regards,

Hissain

Shraddha Shravagi

Hello Hissain,

Once again really thank you for your help.

I tried to register it in app_create but getting same error.

Any directions for 

Line 1482: 01-05 10:44:55.856 : INFO / basicnativeapplication ( 5660 : 5660 ) : bt_gatt_client_get_service is failed : -61

I am getting this error for Battery service as well.

Please help.

Regards,

Shraddha

Shraddha Shravagi

Hello Hissain,

Can we get some help over this? Can you please talk over your internal forums as you said before?

Please help.

 

Regards,

Shraddha

Shraddha Shravagi

Hi,
I downloaded an application on android which made my android phone to act as peripheral and it broadcasted few characteristics BLE Peripheral Simulator [ https://play.google.com/store/apps/details?id=io.github.webbluetoothcg.bletestperipheral&hl=en]
Now i could connect to this characteristic using another Phone which listens to BLE devices.
In same scenario I replaced the listener Android APp with Samsung Gear S2 which had the code to listen and connect to my BLE device.
Gear S2 could successfully read the characteristics but it was unable to connect with the Peripheral application.
So I am doubtful if Gear S2 can act in a central role?

Any pointers would be really helpful.

Regards,
Shraddha

vrajesh s

Hello,

I am facing same issue. i tried @Shardha's and @TizenDeveloper code. but same error got.  i have Samsung Gear s2 watch

I passed my device's ( BLE Chip) UUID and for test passed Battery level  as well.

 

Logs (MY BLE Chip):

03-20 16:19:10.285 : INFO / basicbluetoothdemo ( 16187 : 16187 ) : Remote Address: 00:0B:57:00:E1:C3

03-20 16:19:10.395 : INFO / basicbluetoothdemo ( 16187 : 16187 ) : Connected to our LE device.

03-20 16:19:10.585 : INFO / basicbluetoothdemo ( 16187 : 16187 ) : Client created

03-20 16:19:10.585 : INFO / basicbluetoothdemo ( 16187 : 16187 ) : Successfully get remote address

03-20 16:19:10.585 : INFO / basicbluetoothdemo ( 16187 : 16187 ) : services found

03-20 16:19:10.585 : INFO / basicbluetoothdemo ( 16187 : 16187 ) : bt_gatt_client_get_service is failed : -22

03-20 16:19:10.585 : INFO / basicbluetoothdemo ( 16187 : 16187 ) : bt_gatt_service_get_characteristic is failed : -22

 

Logs (Battery level):

char *svc_uuid ="0000180f-0000-1000-8000-00805f9b34fb";  //Battery service

char *chr_uuid ="00002a19-0000-1000-8000-00805f9b34fb";  //Battery level

char *desc_uuid ="00002902-0000-1000-8000-00805f9b34fb";  //Client characteristic configuration*/

03-20 16:26:44.755 : INFO / basicbluetoothdemo ( 16604 : 16604 ) : services found

03-20 16:26:44.755 : INFO / basicbluetoothdemo ( 16604 : 16604 ) : bt_gatt_client_get_service is failed : -61

03-20 16:26:44.755 : INFO / basicbluetoothdemo ( 16604 : 16604 ) : bt_gatt_service_get_characteristic is failed : -22

 

Why this -22 and -64 error comes. is there anything miss something? it would be great if any solution.

Thanks in advance.

Regards,

Vrajesh