dotnet / android

.NET for Android provides open-source bindings of the Android SDK for use with .NET managed languages such as C#
MIT License
1.94k stars 533 forks source link

all maui app crash on a multi-user android system #8998

Open PureWeen opened 6 months ago

PureWeen commented 6 months ago

Issue moved from dotnet/maui#17501


From @ismlsmile on Wednesday, September 20, 2023 2:10:47 AM

Description

all maui app crash on a multi-user android system, because maui hard coded '/storeage/emulated/0' in the library, but on a multi-user android system, this path maybe '/storeage/emulated/10'

Steps to Reproduce

any maui app will crash

Link to public reproduction project repository

No response

Version with bug

8.0.0-preview.1.7762

Is this a regression from previous behavior?

No, this is something new

Last version that worked well

Unknown/Other

Affected platforms

Android

Affected platform versions

No response

Did you find any workaround?

No response

Relevant log output

No response

PureWeen commented 6 months ago

Issue moved from dotnet/maui#17501


From @drasticactions on Wednesday, September 20, 2023 3:49:48 AM

If you try to run a .NET Android app without MAUI (dotnet new android), does it deploy and work under that setup?

PureWeen commented 6 months ago

Issue moved from dotnet/maui#17501


From @ghost on Wednesday, September 20, 2023 3:50:13 AM

Hi @ismlsmile. We have added the "s/needs-info" label to this issue, which indicates that we have an open question for you before we can take further action. This issue will be closed automatically in 7 days if we do not hear back from you by then - please feel free to re-open it if you come back to this issue after that time.

PureWeen commented 6 months ago

Issue moved from dotnet/maui#17501


From @ismlsmile on Thursday, September 21, 2023 4:23:15 AM

I am sorry I do not know how to run a .NET Android app without MAUI, I just use VS

PureWeen commented 6 months ago

Issue moved from dotnet/maui#17501


From @ismlsmile on Thursday, September 21, 2023 4:24:25 AM

But it is really a bug, because when I use flutter, there is no problem.

PureWeen commented 6 months ago

Issue moved from dotnet/maui#17501


From @moljac on Tuesday, September 26, 2023 2:01:07 PM

Pixel 5 multi user (2 users) MAUI app - crash confirmed

Pixel 5 multi user (2 users) Android app - does not crash

Pixel 6 multi user (2 users) MAUI app - does not crash

Pixel 6 multi user (2 users) Android app - does not crash

logcat:

log_2023-09-26T15-53-59.txt

bugreport:

bugreport-redfin-TQ2A.230505.002-2023-09-26-15-49-11.zip

PureWeen commented 6 months ago

Issue moved from dotnet/maui#17501


From @jonpryor on Tuesday, September 26, 2023 2:12:52 PM

The crash in log_2023-09-26T15-53-59.txt is due to:

09-26 15:53:54.968 24797 24797 E .reprosamplexxx: * Assertion at /__w/1/s/src/mono/mono/metadata/assembly.c:2718, condition `corlib' not met

which is:

https://github.com/dotnet/runtime/blob/release/8.0-rc1/src/mono/mono/metadata/assembly.c#L2718

PureWeen commented 6 months ago

Issue moved from dotnet/maui#17501


From @jonpryor on Tuesday, September 26, 2023 2:20:20 PM

…which is related to this preceding log entry:

I monodroid-assembly: open_from_update_dir: trying to open assembly: /data/user/0/com.companyname.appmaui.reprosamplexxx/files/.__override__/System.Private.CoreLib.dll

The app crashes because System.Private.CoreLib.dll can't be found, presumably because (1) it was never installed, or (2) it was installed into a different directory.

Looking for other /0/ log entries in log_2023-09-26T15-53-59.txt, and we see:

09-26 15:53:54.945 24797 24797 W debug-app-helper: checking directory: `/data/user/0/com.companyname.appmaui.reprosamplexxx/files/.__override__/lib`
09-26 15:53:54.945 24797 24797 W debug-app-helper: directory does not exist: `/data/user/0/com.companyname.appmaui.reprosamplexxx/files/.__override__/lib`

That's concerning; this is a Debug + Fast Deploy install, so the directory it's looking for should exist when the app is being launched, yet it doesn't.

We need the installation logs.

PureWeen commented 6 months ago

Issue moved from dotnet/maui#17501


From @moljac on Tuesday, September 26, 2023 3:15:32 PM

uninstalled app and rebooted

adb shell pm list users

output

Users:
    UserInfo{0:Owner:c13} running
    UserInfo{10:Guest:504}

Pixel 5 app does not crash but hangs on Splashscreen (.NET). App appeared after 30+ secs.

build logs:

msbuild.binlog.zip

collecting logcat and bugreports.

PureWeen commented 6 months ago

Issue moved from dotnet/maui#17501


From @moljac on Tuesday, September 26, 2023 3:19:23 PM

logcat and bugreport

log_2023-09-26T17-16-03.txt

bugreport-redfin-TQ3A.230605.011-2023-09-26-17-16-18.zip

PureWeen commented 6 months ago

Issue moved from dotnet/maui#17501


From @moljac on Wednesday, September 27, 2023 11:55:19 AM

seems like crashes from yesterday were related to adb streaming installation and/or fastdeploy

Todays tests

Pixel 5

adb shell getprop ro.build.version.release

output

13

List users:

adb shell pm list users

output:

Users:
    UserInfo{0:Owner:c13} running
    UserInfo{10:Guest:504}

Running (installing + launching app as default user 0 Owner):

dotnet build AppMAUI.ReproSampleXXX -f:net8.0-android -t:run -v:diagnostic /bl > log-build-diagnostic.log

App does NOT crash, but startup was very long.

Build logs

msbuild.binlog.zip

log-build-diagnostic-20230927-1128.log.zip

adb shell setprop debug.mono.trace all

logcat (compressed):

log_2023-09-27T11-37-03.txt.zip

Pixel 6

adb shell getprop ro.build.version.release

output

13

List users:

adb shell pm list users

output:

Users:
    UserInfo{0:Owner:c13} running
    UserInfo{10:Guest:504}

Running (installing + launching app as default user 0 Owner):

dotnet build AppMAUI.ReproSampleXXX -f:net8.0-android -t:run -v:diagnostic /bl > log-build-diagnostic.log

App does NOT crash, but startup was very long.

Build logs

msbuild 2.binlog.zip

log-build-diagnostic-20230927-1321.log.zip

logcat (compressed):

log_2023-09-27T13-37-11.txt.zip

jonpryor commented 5 months ago

Adding @dellis1972…

dellis1972 commented 5 months ago

My guess is the user is not providing the -p:UserId=xx value when fast deploying. There is nothing hard coded in our system to use /storeage/emulated/0 . We will however default to UserId=0 if one is no provided.

dellis1972 commented 5 months ago

Here is a link to the docs we have on this https://github.com/xamarin/xamarin-android/blob/main/Documentation/docs-mobile/building-apps/build-properties.md#androiddeviceuserid

ramonB1996 commented 2 weeks ago

As mentioned in: https://github.com/dotnet/maui/issues/25730, I am unable to debug any Android apps when using my work-profile user 10.

Is there anything I can try to get it to work? The debugging session just quits after startup, but the app does get installed in the work-profile.

I am using the following:

JetBrains Rider 2024.2.7 Samsung Galaxy Tab S8 5G Android 13, OneUI 5.0 Workload version: 8.0.403.1 MAUI android & MAUI workload id's installed with SDK 8.0.400

To install in the work-profile, I add <AndroidDeviceUserId>10</AndroidDeviceUserId> to the .csproj file and go from there.

adb list users returns:

Users:
    UserInfo{0:Owner:c13} running
    UserInfo{10:Work profile:1030} running
dellis1972 commented 2 weeks ago

@ramonB1996 we need the adb logcat of the issue you are getting , which data should include the crash. From a terminal/Adb command prompt.

adb logcat -c

try to debug the app..

adb logcat > adb.log

Wait for a bit then Ctrl+C.

If course this will all depend on "how" Rider is launching the app for debugging. if they are using our targets (i.e the _Run target) then this should work. But if they are using their own implementation, it might be that thay are not including the AndroidDeviceUserId in their arguments.

ramonB1996 commented 2 weeks ago

Sadly the command adb logcat > adb.log never seems to return on my MacBook Pro.

I have found the adb-output in Rider when starting a debug session:

/Users/abacr00/Library/Developer/Xamarin/android-sdk-macosx/platform-tools/adb -s R52T60FKLMP logcat -v time
--------- beginning of main
11-11 10:38:16.831 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(5) = 1, 1, 61, 2, 1
11-11 10:38:16.832 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 16,
11-11 10:38:16.833 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:16.833 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:16.833 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:16.834 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:16.834 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:16.834 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:16.834 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 16
11-11 10:38:16.834 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:16.834 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:16.834 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:16.834 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:16.834 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:16.834 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:16.835 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :5], AP_SLEEP
11-11 10:38:16.835 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 5
11-11 10:38:16.835 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 61, 2, 1,
11-11 10:38:16.836 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= CH_LOC_TRIGGER =================
11-11 10:38:16.836 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:16.836 I/CAE     ( 2218): display(ContextProvider.java:391) - property=[1], result=[2]
11-11 10:38:16.836 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:16.837 D/SemContextService( 2218): Service.updateContext() : service = Location Change Trigger
11-11 10:38:16.838 D/SemContextManager( 2218): onSemContextChanged() : event = Location Change Trigger
11-11 10:38:16.838 D/NSLocationMonitor( 2218): onSemContextChanged, activity : 1 result : 2 movement : -1
--------- beginning of system
11-11 10:38:17.441 I/SDHMS:D ( 5828): SIOP:: AP:95(199,100) BAT:213(213,0) USB:0(0,0) CHG:208(208,0) WIFI:213(213,0) BLK:213(213,0) SUBBAT:0(0,0) LRP:228(228,0) LRF:222(222) LRB:228(228) 
11-11 10:38:17.441 I/SDHMS:D ( 5828): MODEMQ:: 
11-11 10:38:17.446 W/adbd    ( 4421): timeout expired while flushing socket, closing
11-11 10:38:17.519 D/GnssLocationProvider_ex( 2218): SV Count : 21 / 31      (PRN, Constellation, SNR, Used)
11-11 10:38:17.519 I/GnssEngineManager_FLP( 4252): updateSatelliteStatus, top4=32, top6=32, visibleSv=31, usedSv=21, usedL5Sv=0 (usedGps=6, usedGlo=4, usedBds=6, usedGal=5)
11-11 10:38:17.519 D/GnssLocationProvider_ex( 2218): (5, GPS, 26.7, 1) (7, GPS, 31.6, 1) (9, GPS, 29.0, 1) (11, GPS, 24.3, 1) (20, GPS, 22.0, 1) (30, GPS, 23.5, 1) 
11-11 10:38:17.519 D/GnssLocationProvider_ex( 2218): (14, GLONASS, 32.1, 1) (22, GLONASS, 32.9, 1) (5, GLONASS, 29.2, 1) (21, GLONASS, 28.0, 1) (45, BEIDOU, 22.8, 1) (42, BEIDOU, 27.8, 0) 
11-11 10:38:17.519 D/GnssLocationProvider_ex( 2218): (33, BEIDOU, 30.9, 0) (30, BEIDOU, 20.4, 0) (27, BEIDOU, 23.0, 1) (26, BEIDOU, 31.4, 1) (24, BEIDOU, 19.8, 0) (9, BEIDOU, 25.3, 1) 
11-11 10:38:17.519 D/GnssLocationProvider_ex( 2218): (2, GALILEO, 22.3, 1) (7, GALILEO, 32.8, 1) (8, GALILEO, 24.9, 1) (25, GALILEO, 26.3, 1) (26, GALILEO, 24.7, 0) (29, GALILEO, 22.2, 0) 
11-11 10:38:17.519 D/GnssLocationProvider_ex( 2218): (33, GALILEO, 19.8, 1) (24, BEIDOU, 18.8, 0) (26, BEIDOU, 34.1, 1) (27, BEIDOU, 19.0, 0) (33, BEIDOU, 30.8, 0) (42, BEIDOU, 30.3, 0) 
11-11 10:38:17.519 D/GnssLocationProvider_ex( 2218): (45, BEIDOU, 30.2, 1) 
11-11 10:38:17.524 D/GnssLocationProvider( 2218): reportLocation
11-11 10:38:17.527 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:17.527 I/GnssEngineManager_FLP( 4252): onGpsLocationChanged, provider=gps / isMock=false / speed=0.0 / time=1731317897000 / elapsed=324585588968574
11-11 10:38:17.528 I/OldStopController_FLP( 4252): onChangedGlpLocation, isGpsStopped= false, isReportingLL= false
11-11 10:38:17.530 D/SLocation( 2218): PositionManager - PassiveonLocationChanged gps 1731317897000
11-11 10:38:17.530 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:17.531 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:17.531 D/SLocation( 2218): GeofenceLocationFilter - location sent before 1993, need to filter / provider : gps, accuracy : 5.04908
11-11 10:38:17.531 D/SLocation( 2218): CellManagerFmm - refreshCellInfo
11-11 10:38:17.532 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:17.532 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:17.532 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:17.533 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:17.533 D/SLocation( 2218): CellManagerFmm - isChangedCellInfo - true
11-11 10:38:17.533 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:17.534 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 1 / [34]
11-11 10:38:17.534 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:17.535 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:17.535 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:17.536 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:17.537 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 34, len : 1
11-11 10:38:17.538 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 34,
11-11 10:38:17.542 I/FusedLocation(16769): (REDACTED) location delivery to %s blocked - too close
11-11 10:38:17.543 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:17.545 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:17.545 D/SensorService( 2218): setSContextDataLocked 223717c1
11-11 10:38:17.545 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:17.545 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xc1, 0x17, 0x37, 0x22)
11-11 10:38:17.545 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:17.545 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:17.545 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:17.546 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:17.547 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:17.547 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:17.547 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:17.548 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 23 / [2, 30, 246, 26, 42, 2, 228, 161, 84, 0, 0, 0, 5, 1, 0, 0, 1, 147, 26, 150, 151, 40, 0]
11-11 10:38:17.548 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:17.548 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:17.548 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.548 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:17.548 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:17.548 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:17.549 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 2, len : 23
11-11 10:38:17.549 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 2, 30, -10, 26, 42, 2, -28, -95, 84, 0, 0, 0, 5, 1, 0, 0, 1, -109, 26, -106, -105, 40, 0,
11-11 10:38:17.549 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:17.549 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(26) = 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 107, 64, 1, 3, 0, 0, 0, 0, 2, 17, 107, 64
11-11 10:38:17.550 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:17.550 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(38) = 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -109, 64, 30, -10, 25, 96, 2, -28, -95, 8, 0, 0, 0, 7, 2, 17, 107, 64, 0, 0, 0, 0
11-11 10:38:17.550 D/SensorService( 2218): setSContextDataLocked ints length 8 , byte length 26
11-11 10:38:17.550 D/SensorService( 2218): setSContextDataLocked 23717c1
11-11 10:38:17.551 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:17.551 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 17,
11-11 10:38:17.551 I/sensors-hal( 1368): sendContextData:285, sensor hal 26, (0xc1, 0x17, 0x37, 0x2)
11-11 10:38:17.551 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:17.551 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:17.551 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:17.551 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:17.552 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:17.552 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:17.552 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 34, 0, 0, 0
11-11 10:38:17.552 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:17.552 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:17.552 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:17.552 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:17.552 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:17.552 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:17.552 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:17.552 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 17
11-11 10:38:17.552 D/SLocation( 2218): PositionManager - PassiveonLocationChanged fused 1731317897506
11-11 10:38:17.552 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:17.552 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:17.552 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:17.553 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:17.553 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:17.553 W/SLocation( 2218): PositionManager - do not refresh last location about fused location
11-11 10:38:17.553 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:17.553 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:17.553 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:17.553 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:17.553 D/SLocation( 2218): ARDistanceGetARDistance - ignore request, waiting for packet
11-11 10:38:17.553 D/SLocation( 2218): PositionManager - receive fused location
11-11 10:38:17.553 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :26], AP_SLEEP
11-11 10:38:17.553 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.553 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 26
11-11 10:38:17.553 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:17.554 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 107, 64, 1, 3, 0, 0, 0, 0, 2, 17, 107, 64,
11-11 10:38:17.554 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.554 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:17.554 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.554 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:17.554 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 2, 0, 0, 0
11-11 10:38:17.554 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 107, 64, 1, 3, 0, 0, 0, 0, 2, 17, 107, 64]
11-11 10:38:17.555 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:26
11-11 10:38:17.555 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:17.555 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 17,
11-11 10:38:17.556 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:17.556 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:17.556 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:17.556 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:17.556 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:17.556 I/SLocation( 2218): SemContextParser -  packet Length : 21packet total size : 26
11-11 10:38:17.556 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:17.556 I/SLocation( 2218): SemContextParser - packet : [5, 7, 1, 0, 0, 0, 0, 2, 17, 107, 64, 1, 3, 0, 0, 0, 0, 2, 17, 107, 64]
11-11 10:38:17.556 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:17.556 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:17.556 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:17.556 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 17
11-11 10:38:17.556 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:17.556 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:17.556 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 21
11-11 10:38:17.557 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:17.557 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:17.557 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:17.557 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:17.557 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :38], AP_SLEEP
11-11 10:38:17.557 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 38
11-11 10:38:17.557 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -109, 64, 30, -10, 25, 96, 2, -28, -95, 8, 0, 0, 0, 7, 2, 17, 107, 64, 0, 0, 0, 0,
11-11 10:38:17.558 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:17.558 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.558 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:17.558 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.558 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -109, 64, 30, -10, 25, 96, 2, -28, -95, 8, 0, 0, 0, 7, 2, 17, 107, 64, 0, 0, 0, 0]
11-11 10:38:17.558 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:38
11-11 10:38:17.559 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:17.559 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:17.559 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:17.559 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 17,
11-11 10:38:17.559 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:17.559 I/SLocation( 2218): SemContextParser -  packet Length : 33packet total size : 38
11-11 10:38:17.559 I/SLocation( 2218): SemContextParser - packet : [33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -109, 64, 30, -10, 25, 96, 2, -28, -95, 8, 0, 0, 0, 7, 2, 17, 107, 64, 0, 0, 0, 0]
11-11 10:38:17.559 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:17.559 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:17.559 D/SLocation( 2218): ARDistanceGetARDistance - convertSensorHubTimeToElapsedTime 324584082
11-11 10:38:17.559 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:17.559 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:17.559 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 33
11-11 10:38:17.559 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:17.560 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:17.560 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 17
11-11 10:38:17.560 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:17.560 D/SLocation( 2218): SCurrentLocationManager - handleCurrentLocationCoreDistance 0.0
11-11 10:38:17.560 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:17.560 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:17.560 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:17.560 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:17.560 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:17.560 D/SLocation( 2218): TrackingReceiverFilterFmm - sum of ar distance : 0.0, update time : 324585641, gps loc time : 324585588
11-11 10:38:17.560 D/SLocation( 2218): TrackingReceiverFilter - sum of ar distance : 0.0, update time : 324585642, gps loc time : 324585588
11-11 10:38:17.560 D/SLocation( 2218): TrackingReceiverFilter - update last gps location from core, dist : 0.0
11-11 10:38:17.560 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:17.560 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:17.561 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 34, 0, 0, 0,
11-11 10:38:17.561 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:17.561 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:17.561 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 34, 0, 0, 0]
11-11 10:38:17.561 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:17.562 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.562 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.562 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:17.562 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 17,
11-11 10:38:17.562 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:17.562 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:17.562 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:17.562 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:17.562 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:17.562 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:17.562 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:17.562 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:17.562 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:17.562 I/SLocation( 2218): SemContextParser - packet : [2, 34, 0, 0, 0]
11-11 10:38:17.562 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:17.562 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 17
11-11 10:38:17.562 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:17.562 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:17.562 D/SLocation( 2218): ARDistanceLibManager - command callback received - CURRENT_LOCATION_REQUEST_DISTANCE ERROR CODE : ERROR_NONE
11-11 10:38:17.562 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:17.563 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:17.563 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:17.563 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:17.563 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:17.563 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:17.563 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:17.563 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 2, 0, 0, 0,
11-11 10:38:17.564 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:17.564 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:17.564 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 2, 0, 0, 0]
11-11 10:38:17.564 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:17.564 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.564 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:17.565 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.565 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:17.565 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:17.565 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:17.565 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:17.565 I/SLocation( 2218): SemContextParser - packet : [2, 2, 0, 0, 0]
11-11 10:38:17.565 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:17.565 D/SLocation( 2218): CommonCoreManager - handleCommandCallback - FUNC_TYPE : SET_LOCATION ERROR_CODE : ERROR_NONE
11-11 10:38:17.772 D/SemContextService( 2218): lock : requestToUpdate
11-11 10:38:17.773 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for CH_LOC_TRIGGER
11-11 10:38:17.773 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -72, 61, 0, 0,
11-11 10:38:17.774 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:17.774 D/SensorService( 2218): setSContextDataLocked 3db8
11-11 10:38:17.775 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:17.775 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xb8, 0x3d, 0x0, 0x0)
11-11 10:38:17.775 I/sensors-hal( 1368): sendContextData:129, change_location_trigger 4,184
11-11 10:38:17.775 I/sensors-hal( 1368): sendUserData:116, change_location_trigger h 184 m 61 s 0
11-11 10:38:17.775 I/sensors-hal( 1368): create_send_context_data:64, change_location_trigger create_send_context_data
11-11 10:38:17.775 I/sensors-hal( 1368): send_context_data:622, change_location_trigger, -244018566922240, 1320970896291267344, msgid:700
11-11 10:38:17.776 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for CH_LOC_TRIGGER
11-11 10:38:17.776 D/SemContextService( 2218):     .requestToUpdate() : service = Location Change Trigger
11-11 10:38:17.776 D/SemContextService( 2218): unlock : requestToUpdate
11-11 10:38:17.776 D/SemContextManager( 2218):   .requestToUpdate : listener = com.android.server.location.nsflp.NSLocationMonitor$5@b3fad00, service=Location Change Trigger
11-11 10:38:17.777 I/OldStopController_FLP( 4252): StateChecker, check stationary message
11-11 10:38:17.777 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.798 I/sensors-hal( 1368): handle_sns_client_event:83, change_location_trigger_event: msgid:1025
11-11 10:38:17.798 I/sensors-hal( 1368): handle_sns_client_event:106, change_location_trigger_event: 2, 2
11-11 10:38:17.799 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(5) = 1, 1, 61, 2, 1
11-11 10:38:17.800 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 17,
11-11 10:38:17.801 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:17.801 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:17.801 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:17.801 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:17.801 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:17.801 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:17.801 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 17
11-11 10:38:17.801 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:17.801 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:17.802 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:17.802 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:17.802 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:17.802 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:17.803 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :5], AP_SLEEP
11-11 10:38:17.803 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 5
11-11 10:38:17.804 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.804 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:17.804 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 61, 2, 1,
11-11 10:38:17.805 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= CH_LOC_TRIGGER =================
11-11 10:38:17.805 I/CAE     ( 2218): display(ContextProvider.java:391) - property=[1], result=[2]
11-11 10:38:17.806 D/SemContextService( 2218): Service.updateContext() : service = Location Change Trigger
11-11 10:38:17.807 D/SemContextManager( 2218): onSemContextChanged() : event = Location Change Trigger
11-11 10:38:17.807 D/NSLocationMonitor( 2218): onSemContextChanged, activity : 1 result : 2 movement : -1
11-11 10:38:17.895 D/io_stats( 1057): !@   8,0 r 743744 27133240 w 393454 8927160 d 174029 100473988 f 0 47783 iot 731700 0 th 0 0 0 pt 0 inp 0 0 11445.598
11-11 10:38:17.947 I/sensors-hal( 1368): handle_sns_client_event:628, [0][277] gyro_sample_cal(3) [ 0.000, 0.002, 0.001] 324586011504994
11-11 10:38:18.518 D/GnssLocationProvider_ex( 2218): SV Count : 24 / 31      (PRN, Constellation, SNR, Used)
11-11 10:38:18.518 D/GnssLocationProvider_ex( 2218): (5, GPS, 26.9, 1) (7, GPS, 31.8, 1) (9, GPS, 28.8, 1) (11, GPS, 23.6, 1) (20, GPS, 22.0, 1) (30, GPS, 24.1, 1) 
11-11 10:38:18.518 D/GnssLocationProvider_ex( 2218): (14, GLONASS, 32.4, 1) (22, GLONASS, 32.6, 1) (5, GLONASS, 28.7, 1) (21, GLONASS, 28.6, 1) (45, BEIDOU, 24.0, 1) (42, BEIDOU, 26.8, 0) 
11-11 10:38:18.518 D/GnssLocationProvider_ex( 2218): (33, BEIDOU, 31.0, 0) (30, BEIDOU, 20.4, 0) (27, BEIDOU, 23.0, 1) (26, BEIDOU, 31.2, 1) (24, BEIDOU, 19.8, 1) (9, BEIDOU, 26.2, 1) 
11-11 10:38:18.518 D/GnssLocationProvider_ex( 2218): (2, GALILEO, 21.5, 1) (7, GALILEO, 31.9, 1) (8, GALILEO, 25.3, 1) (25, GALILEO, 26.3, 1) (26, GALILEO, 24.9, 0) (29, GALILEO, 21.2, 0) 
11-11 10:38:18.518 D/GnssLocationProvider_ex( 2218): (33, GALILEO, 19.8, 1) (24, BEIDOU, 18.8, 1) (26, BEIDOU, 33.4, 1) (27, BEIDOU, 19.0, 1) (33, BEIDOU, 30.7, 0) (42, BEIDOU, 29.2, 0) 
11-11 10:38:18.518 D/GnssLocationProvider_ex( 2218): (45, BEIDOU, 29.2, 1) 
11-11 10:38:18.519 I/GnssEngineManager_FLP( 4252): updateSatelliteStatus, top4=32, top6=31, visibleSv=31, usedSv=24, usedL5Sv=0 (usedGps=6, usedGlo=4, usedBds=9, usedGal=5)
11-11 10:38:18.522 D/GnssLocationProvider( 2218): reportLocation
11-11 10:38:18.526 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:18.526 I/GnssEngineManager_FLP( 4252): onGpsLocationChanged, provider=gps / isMock=false / speed=0.0 / time=1731317898000 / elapsed=324586588813209
11-11 10:38:18.527 I/OldStopController_FLP( 4252): onChangedGlpLocation, isGpsStopped= false, isReportingLL= false
11-11 10:38:18.529 D/SLocation( 2218): PositionManager - PassiveonLocationChanged gps 1731317898000
11-11 10:38:18.530 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:18.531 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:18.531 D/SLocation( 2218): GeofenceLocationFilter - location sent before 2994, need to filter / provider : gps, accuracy : 5.2604117
11-11 10:38:18.532 D/SLocation( 2218): CellManagerFmm - refreshCellInfo
11-11 10:38:18.533 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:18.536 I/FusedLocation(16769): (REDACTED) location delivery to %s blocked - too close
11-11 10:38:18.536 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:18.538 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:18.538 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:18.538 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:18.538 D/SLocation( 2218): CellManagerFmm - isChangedCellInfo - true
11-11 10:38:18.539 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:18.539 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 1 / [34]
11-11 10:38:18.539 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:18.539 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:18.539 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:18.540 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:18.541 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 34, len : 1
11-11 10:38:18.541 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 34,
11-11 10:38:18.542 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:18.542 D/SensorService( 2218): setSContextDataLocked 223717c1
11-11 10:38:18.543 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:18.543 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xc1, 0x17, 0x37, 0x22)
11-11 10:38:18.543 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:18.543 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:18.543 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:18.543 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:18.544 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:18.544 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:18.544 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:18.544 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 23 / [2, 30, 246, 26, 99, 2, 228, 160, 217, 0, 0, 0, 5, 1, 0, 0, 1, 147, 26, 150, 155, 16, 0]
11-11 10:38:18.544 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:18.545 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:18.545 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:18.545 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:18.545 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.545 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 2, len : 23
11-11 10:38:18.545 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:18.545 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 2, 30, -10, 26, 99, 2, -28, -96, -39, 0, 0, 0, 5, 1, 0, 0, 1, -109, 26, -106, -101, 16, 0,
11-11 10:38:18.546 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:18.546 D/SensorService( 2218): setSContextDataLocked ints length 8 , byte length 26
11-11 10:38:18.546 D/SensorService( 2218): setSContextDataLocked 23717c1
11-11 10:38:18.546 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(26) = 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 111, 40, 1, 3, 0, 0, 0, 0, 2, 17, 111, 40
11-11 10:38:18.547 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:18.547 I/sensors-hal( 1368): sendContextData:285, sensor hal 26, (0xc1, 0x17, 0x37, 0x2)
11-11 10:38:18.547 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:18.547 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:18.547 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:18.547 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:18.547 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:18.547 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:18.547 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:18.547 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:18.548 D/SLocation( 2218): PositionManager - PassiveonLocationChanged fused 1731317898506
11-11 10:38:18.548 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(38) = 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -105, 40, 30, -10, 26, 32, 2, -28, -95, 84, 0, 0, 0, 5, 2, 17, 111, 40, 0, 0, 0, 0
11-11 10:38:18.548 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 18,
11-11 10:38:18.548 W/SLocation( 2218): PositionManager - do not refresh last location about fused location
11-11 10:38:18.548 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:18.548 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:18.549 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 34, 0, 0, 0
11-11 10:38:18.549 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:18.549 D/SLocation( 2218): ARDistanceGetARDistance - ignore request, waiting for packet
11-11 10:38:18.549 D/SLocation( 2218): PositionManager - receive fused location
11-11 10:38:18.549 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.549 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:18.549 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:18.549 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:18.549 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:18.549 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:18.549 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:18.549 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:18.549 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 18
11-11 10:38:18.549 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:18.549 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:18.549 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:18.549 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:18.549 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:18.549 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:18.550 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.551 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 2, 0, 0, 0
11-11 10:38:18.551 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.551 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :26], AP_SLEEP
11-11 10:38:18.551 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 26
11-11 10:38:18.552 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 111, 40, 1, 3, 0, 0, 0, 0, 2, 17, 111, 40,
11-11 10:38:18.552 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:18.553 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:18.553 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 111, 40, 1, 3, 0, 0, 0, 0, 2, 17, 111, 40]
11-11 10:38:18.553 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:26
11-11 10:38:18.554 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:18.555 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:18.555 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:18.555 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 18,
11-11 10:38:18.555 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:18.555 I/SLocation( 2218): SemContextParser -  packet Length : 21packet total size : 26
11-11 10:38:18.555 I/SLocation( 2218): SemContextParser - packet : [5, 7, 1, 0, 0, 0, 0, 2, 17, 111, 40, 1, 3, 0, 0, 0, 0, 2, 17, 111, 40]
11-11 10:38:18.555 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 21
11-11 10:38:18.555 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:18.556 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:18.556 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:18.556 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:18.556 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:18.556 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:18.556 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 18
11-11 10:38:18.556 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:18.556 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:18.557 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:18.557 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:18.557 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:18.557 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:18.557 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :38], AP_SLEEP
11-11 10:38:18.558 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 38
11-11 10:38:18.558 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -105, 40, 30, -10, 26, 32, 2, -28, -95, 84, 0, 0, 0, 5, 2, 17, 111, 40, 0, 0, 0, 0,
11-11 10:38:18.558 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:18.559 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.559 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.559 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:18.559 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -105, 40, 30, -10, 26, 32, 2, -28, -95, 84, 0, 0, 0, 5, 2, 17, 111, 40, 0, 0, 0, 0]
11-11 10:38:18.560 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:38
11-11 10:38:18.560 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:18.560 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 18,
11-11 10:38:18.560 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:18.560 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:18.560 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:18.561 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:18.561 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:18.561 I/SLocation( 2218): SemContextParser -  packet Length : 33packet total size : 38
11-11 10:38:18.561 I/SLocation( 2218): SemContextParser - packet : [33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -105, 40, 30, -10, 26, 32, 2, -28, -95, 84, 0, 0, 0, 5, 2, 17, 111, 40, 0, 0, 0, 0]
11-11 10:38:18.561 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:18.561 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:18.561 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:18.561 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:18.561 D/SLocation( 2218): ARDistanceGetARDistance - convertSensorHubTimeToElapsedTime 324585081
11-11 10:38:18.561 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 18
11-11 10:38:18.561 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:18.561 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:18.561 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:18.561 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 33
11-11 10:38:18.561 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:18.561 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:18.561 D/SLocation( 2218): SCurrentLocationManager - handleCurrentLocationCoreDistance 0.0
11-11 10:38:18.561 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:18.561 D/SLocation( 2218): TrackingReceiverFilterFmm - sum of ar distance : 0.0, update time : 324586643, gps loc time : 324586588
11-11 10:38:18.562 D/SLocation( 2218): TrackingReceiverFilter - sum of ar distance : 0.0, update time : 324586643, gps loc time : 324586588
11-11 10:38:18.562 D/SLocation( 2218): TrackingReceiverFilter - update last gps location from core, dist : 0.0
11-11 10:38:18.562 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.562 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:18.562 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.563 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:18.563 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 34, 0, 0, 0,
11-11 10:38:18.563 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:18.563 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:18.564 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 34, 0, 0, 0]
11-11 10:38:18.564 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:18.564 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:18.565 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:18.565 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:18.565 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 18,
11-11 10:38:18.565 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:18.565 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:18.565 I/SLocation( 2218): SemContextParser - packet : [2, 34, 0, 0, 0]
11-11 10:38:18.565 D/SLocation( 2218): ARDistanceLibManager - command callback received - CURRENT_LOCATION_REQUEST_DISTANCE ERROR CODE : ERROR_NONE
11-11 10:38:18.565 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:18.565 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:18.566 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:18.566 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:18.566 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:18.566 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:18.566 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:18.566 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 18
11-11 10:38:18.566 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:18.566 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:18.566 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:18.566 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:18.566 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:18.566 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:18.566 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:18.567 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:18.567 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 2, 0, 0, 0,
11-11 10:38:18.567 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:18.568 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:18.568 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 2, 0, 0, 0]
11-11 10:38:18.568 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.568 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.568 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:18.568 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:18.569 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:18.569 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:18.569 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:18.569 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:18.569 I/SLocation( 2218): SemContextParser - packet : [2, 2, 0, 0, 0]
11-11 10:38:18.570 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:18.570 D/SLocation( 2218): CommonCoreManager - handleCommandCallback - FUNC_TYPE : SET_LOCATION ERROR_CODE : ERROR_NONE
11-11 10:38:18.778 D/SemContextService( 2218): lock : requestToUpdate
11-11 10:38:18.779 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for CH_LOC_TRIGGER
11-11 10:38:18.779 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -72, 61, 0, 0,
11-11 10:38:18.780 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:18.780 D/SensorService( 2218): setSContextDataLocked 3db8
11-11 10:38:18.780 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:18.780 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xb8, 0x3d, 0x0, 0x0)
11-11 10:38:18.780 I/sensors-hal( 1368): sendContextData:129, change_location_trigger 4,184
11-11 10:38:18.780 I/sensors-hal( 1368): sendUserData:116, change_location_trigger h 184 m 61 s 0
11-11 10:38:18.780 I/sensors-hal( 1368): create_send_context_data:64, change_location_trigger create_send_context_data
11-11 10:38:18.781 I/sensors-hal( 1368): send_context_data:622, change_location_trigger, -244018566922240, 1320970896291267344, msgid:700
11-11 10:38:18.782 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for CH_LOC_TRIGGER
11-11 10:38:18.782 D/SemContextService( 2218):     .requestToUpdate() : service = Location Change Trigger
11-11 10:38:18.782 D/SemContextService( 2218): unlock : requestToUpdate
11-11 10:38:18.782 D/SemContextManager( 2218):   .requestToUpdate : listener = com.android.server.location.nsflp.NSLocationMonitor$5@b3fad00, service=Location Change Trigger
11-11 10:38:18.783 I/OldStopController_FLP( 4252): StateChecker, check stationary message
11-11 10:38:18.783 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.785 I/sensors-hal( 1368): handle_sns_client_event:83, change_location_trigger_event: msgid:1025
11-11 10:38:18.785 I/sensors-hal( 1368): handle_sns_client_event:106, change_location_trigger_event: 2, 2
11-11 10:38:18.787 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(5) = 1, 1, 61, 2, 1
11-11 10:38:18.788 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 18,
11-11 10:38:18.789 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:18.789 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:18.789 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:18.789 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:18.789 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:18.789 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:18.789 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 18
11-11 10:38:18.789 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:18.789 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:18.790 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:18.790 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:18.790 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:18.790 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:18.791 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :5], AP_SLEEP
11-11 10:38:18.791 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 5
11-11 10:38:18.791 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 61, 2, 1,
11-11 10:38:18.791 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.791 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:18.792 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= CH_LOC_TRIGGER =================
11-11 10:38:18.792 I/CAE     ( 2218): display(ContextProvider.java:391) - property=[1], result=[2]
11-11 10:38:18.793 D/SemContextService( 2218): Service.updateContext() : service = Location Change Trigger
11-11 10:38:18.793 D/SemContextManager( 2218): onSemContextChanged() : event = Location Change Trigger
11-11 10:38:18.793 D/NSLocationMonitor( 2218): onSemContextChanged, activity : 1 result : 2 movement : -1
11-11 10:38:19.521 D/GnssLocationProvider_ex( 2218): SV Count : 24 / 32      (PRN, Constellation, SNR, Used)
11-11 10:38:19.521 D/GnssLocationProvider_ex( 2218): (5, GPS, 26.6, 1) (7, GPS, 32.7, 1) (9, GPS, 29.1, 1) (11, GPS, 25.2, 1) (20, GPS, 20.5, 1) (30, GPS, 23.3, 1) 
11-11 10:38:19.521 D/GnssLocationProvider_ex( 2218): (14, GLONASS, 31.8, 1) (22, GLONASS, 32.4, 1) (15, GLONASS, 18.3, 0) (5, GLONASS, 29.6, 1) (21, GLONASS, 29.2, 1) (45, BEIDOU, 24.0, 1) 
11-11 10:38:19.521 D/GnssLocationProvider_ex( 2218): (42, BEIDOU, 27.8, 0) (33, BEIDOU, 30.8, 0) (30, BEIDOU, 20.4, 0) (27, BEIDOU, 21.4, 1) (26, BEIDOU, 31.3, 1) (24, BEIDOU, 19.8, 1) 
11-11 10:38:19.521 D/GnssLocationProvider_ex( 2218): (9, BEIDOU, 26.0, 1) (2, GALILEO, 21.9, 1) (7, GALILEO, 32.9, 1) (8, GALILEO, 25.2, 1) (25, GALILEO, 26.3, 1) (26, GALILEO, 25.0, 0) 
11-11 10:38:19.521 D/GnssLocationProvider_ex( 2218): (29, GALILEO, 23.4, 0) (33, GALILEO, 19.1, 1) (24, BEIDOU, 19.1, 1) (26, BEIDOU, 33.9, 1) (27, BEIDOU, 19.0, 1) (33, BEIDOU, 31.7, 0) 
11-11 10:38:19.521 D/GnssLocationProvider_ex( 2218): (42, BEIDOU, 29.8, 0) (45, BEIDOU, 29.1, 1) 
11-11 10:38:19.523 I/GnssEngineManager_FLP( 4252): updateSatelliteStatus, top4=32, top6=31, visibleSv=32, usedSv=24, usedL5Sv=0 (usedGps=6, usedGlo=4, usedBds=9, usedGal=5)
11-11 10:38:19.526 D/GnssLocationProvider( 2218): reportLocation
11-11 10:38:19.528 I/GnssEngineManager_FLP( 4252): onGpsLocationChanged, provider=gps / isMock=false / speed=0.0 / time=1731317899000 / elapsed=324587588488156
11-11 10:38:19.529 I/OldStopController_FLP( 4252): onChangedGlpLocation, isGpsStopped= false, isReportingLL= false
11-11 10:38:19.532 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:19.537 D/SLocation( 2218): PositionManager - PassiveonLocationChanged gps 1731317899000
11-11 10:38:19.537 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:19.537 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:19.537 D/SLocation( 2218): GeofenceLocationFilter - location sent before 4000, need to filter / provider : gps, accuracy : 4.76339
11-11 10:38:19.537 D/SLocation( 2218): CellManagerFmm - refreshCellInfo
11-11 10:38:19.538 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:19.538 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:19.539 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:19.541 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:19.541 D/SLocation( 2218): CellManagerFmm - isChangedCellInfo - true
11-11 10:38:19.541 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:19.541 I/FusedLocation(16769): (REDACTED) location delivery to %s blocked - too close
11-11 10:38:19.541 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 1 / [34]
11-11 10:38:19.542 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:19.542 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:19.542 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:19.543 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:19.544 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:19.545 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 34, len : 1
11-11 10:38:19.546 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 34,
11-11 10:38:19.546 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:19.547 D/SensorService( 2218): setSContextDataLocked 223717c1
11-11 10:38:19.547 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:19.547 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xc1, 0x17, 0x37, 0x22)
11-11 10:38:19.547 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:19.547 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:19.547 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:19.547 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:19.548 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:19.549 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:19.549 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:19.549 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 23 / [2, 30, 246, 26, 21, 2, 228, 159, 217, 0, 0, 0, 4, 1, 0, 0, 1, 147, 26, 150, 158, 248, 0]
11-11 10:38:19.549 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:19.549 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:19.549 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:19.550 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:19.550 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.550 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:19.550 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 2, len : 23
11-11 10:38:19.551 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 2, 30, -10, 26, 21, 2, -28, -97, -39, 0, 0, 0, 4, 1, 0, 0, 1, -109, 26, -106, -98, -8, 0,
11-11 10:38:19.551 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:19.552 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:19.552 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(26) = 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 115, 16, 1, 3, 0, 0, 0, 0, 2, 17, 115, 16
11-11 10:38:19.552 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(38) = 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -101, 16, 30, -10, 26, 96, 2, -28, -96, -40, 0, 0, 0, 5, 2, 17, 115, 16, 0, 0, 0, 0
11-11 10:38:19.553 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 19,
11-11 10:38:19.554 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 34, 0, 0, 0
11-11 10:38:19.554 D/SensorService( 2218): setSContextDataLocked ints length 8 , byte length 26
11-11 10:38:19.554 D/SensorService( 2218): setSContextDataLocked 23717c1
11-11 10:38:19.554 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:19.554 I/sensors-hal( 1368): sendContextData:285, sensor hal 26, (0xc1, 0x17, 0x37, 0x2)
11-11 10:38:19.554 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:19.554 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:19.555 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:19.555 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:19.555 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:19.556 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:19.556 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:19.556 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:19.556 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:19.556 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:19.556 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:19.556 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:19.556 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:19.556 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 19
11-11 10:38:19.556 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:19.556 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:19.556 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:19.556 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:19.556 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:19.556 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:19.556 D/SLocation( 2218): PositionManager - PassiveonLocationChanged fused 1731317899506
11-11 10:38:19.557 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.557 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :26], AP_SLEEP
11-11 10:38:19.557 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:19.557 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.557 W/SLocation( 2218): PositionManager - do not refresh last location about fused location
11-11 10:38:19.557 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.558 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 26
11-11 10:38:19.558 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 115, 16, 1, 3, 0, 0, 0, 0, 2, 17, 115, 16,
11-11 10:38:19.558 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 2, 0, 0, 0
11-11 10:38:19.559 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:19.559 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:19.559 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:19.559 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:19.559 D/SLocation( 2218): ARDistanceGetARDistance - ignore request, waiting for packet
11-11 10:38:19.559 D/SLocation( 2218): PositionManager - receive fused location
11-11 10:38:19.559 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:19.560 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 115, 16, 1, 3, 0, 0, 0, 0, 2, 17, 115, 16]
11-11 10:38:19.560 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:26
11-11 10:38:19.561 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:19.561 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:19.561 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:19.561 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 19,
11-11 10:38:19.561 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:19.562 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:19.562 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:19.562 I/SLocation( 2218): SemContextParser -  packet Length : 21packet total size : 26
11-11 10:38:19.562 I/SLocation( 2218): SemContextParser - packet : [5, 7, 1, 0, 0, 0, 0, 2, 17, 115, 16, 1, 3, 0, 0, 0, 0, 2, 17, 115, 16]
11-11 10:38:19.562 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:19.562 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:19.562 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:19.562 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:19.562 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 19
11-11 10:38:19.562 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:19.562 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 21
11-11 10:38:19.562 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:19.562 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:19.562 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:19.562 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:19.562 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:19.563 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :38], AP_SLEEP
11-11 10:38:19.563 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 38
11-11 10:38:19.564 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -101, 16, 30, -10, 26, 96, 2, -28, -96, -40, 0, 0, 0, 5, 2, 17, 115, 16, 0, 0, 0, 0,
11-11 10:38:19.564 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.565 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:19.565 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.565 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:19.566 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -101, 16, 30, -10, 26, 96, 2, -28, -96, -40, 0, 0, 0, 5, 2, 17, 115, 16, 0, 0, 0, 0]
11-11 10:38:19.566 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:38
11-11 10:38:19.567 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:19.567 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:19.567 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:19.567 I/SLocation( 2218): SemContextParser -  packet Length : 33packet total size : 38
11-11 10:38:19.567 I/SLocation( 2218): SemContextParser - packet : [33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -101, 16, 30, -10, 26, 96, 2, -28, -96, -40, 0, 0, 0, 5, 2, 17, 115, 16, 0, 0, 0, 0]
11-11 10:38:19.567 D/SLocation( 2218): ARDistanceGetARDistance - convertSensorHubTimeToElapsedTime 324586082
11-11 10:38:19.567 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:19.567 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 33
11-11 10:38:19.568 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 19,
11-11 10:38:19.568 D/SLocation( 2218): SCurrentLocationManager - handleCurrentLocationCoreDistance 0.0
11-11 10:38:19.568 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:19.568 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:19.568 D/SLocation( 2218): TrackingReceiverFilterFmm - sum of ar distance : 0.0, update time : 324587649, gps loc time : 324587588
11-11 10:38:19.568 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:19.568 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:19.568 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:19.568 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:19.568 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 19
11-11 10:38:19.568 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:19.568 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:19.568 D/SLocation( 2218): TrackingReceiverFilter - sum of ar distance : 0.0, update time : 324587650, gps loc time : 324587588
11-11 10:38:19.568 D/SLocation( 2218): TrackingReceiverFilter - update last gps location from core, dist : 0.0
11-11 10:38:19.568 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:19.568 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:19.568 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:19.568 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:19.569 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:19.569 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:19.569 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 34, 0, 0, 0,
11-11 10:38:19.570 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.570 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:19.570 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.570 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:19.570 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 34, 0, 0, 0]
11-11 10:38:19.571 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:19.571 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:19.571 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:19.571 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:19.571 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:19.571 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:19.571 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 19,
11-11 10:38:19.572 I/SLocation( 2218): SemContextParser - packet : [2, 34, 0, 0, 0]
11-11 10:38:19.572 D/SLocation( 2218): ARDistanceLibManager - command callback received - CURRENT_LOCATION_REQUEST_DISTANCE ERROR CODE : ERROR_NONE
11-11 10:38:19.572 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:19.572 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:19.572 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:19.572 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:19.572 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:19.572 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:19.572 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:19.572 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 19
11-11 10:38:19.572 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:19.572 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:19.572 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:19.572 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:19.572 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:19.572 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:19.573 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:19.573 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:19.574 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 2, 0, 0, 0,
11-11 10:38:19.574 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:19.574 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:19.574 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.574 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 2, 0, 0, 0]
11-11 10:38:19.575 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.575 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:19.575 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:19.575 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:19.575 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:19.575 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:19.575 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:19.576 I/SLocation( 2218): SemContextParser - packet : [2, 2, 0, 0, 0]
11-11 10:38:19.576 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:19.576 D/SLocation( 2218): CommonCoreManager - handleCommandCallback - FUNC_TYPE : SET_LOCATION ERROR_CODE : ERROR_NONE
11-11 10:38:19.784 D/SemContextService( 2218): lock : requestToUpdate
11-11 10:38:19.785 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for CH_LOC_TRIGGER
11-11 10:38:19.786 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -72, 61, 0, 0,
11-11 10:38:19.787 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:19.787 D/SensorService( 2218): setSContextDataLocked 3db8
11-11 10:38:19.787 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:19.787 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xb8, 0x3d, 0x0, 0x0)
11-11 10:38:19.787 I/sensors-hal( 1368): sendContextData:129, change_location_trigger 4,184
11-11 10:38:19.787 I/sensors-hal( 1368): sendUserData:116, change_location_trigger h 184 m 61 s 0
11-11 10:38:19.788 I/sensors-hal( 1368): create_send_context_data:64, change_location_trigger create_send_context_data
11-11 10:38:19.788 I/sensors-hal( 1368): send_context_data:622, change_location_trigger, -244018566922240, 1320970896291267344, msgid:700
11-11 10:38:19.789 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for CH_LOC_TRIGGER
11-11 10:38:19.789 D/SemContextService( 2218):     .requestToUpdate() : service = Location Change Trigger
11-11 10:38:19.789 D/SemContextService( 2218): unlock : requestToUpdate
11-11 10:38:19.789 D/SemContextManager( 2218):   .requestToUpdate : listener = com.android.server.location.nsflp.NSLocationMonitor$5@b3fad00, service=Location Change Trigger
11-11 10:38:19.789 I/OldStopController_FLP( 4252): StateChecker, check stationary message
11-11 10:38:19.790 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.830 I/sensors-hal( 1368): handle_sns_client_event:83, change_location_trigger_event: msgid:1025
11-11 10:38:19.830 I/sensors-hal( 1368): handle_sns_client_event:106, change_location_trigger_event: 2, 2
11-11 10:38:19.833 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(5) = 1, 1, 61, 2, 1
11-11 10:38:19.835 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 19,
11-11 10:38:19.836 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:19.836 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:19.836 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:19.837 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:19.837 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:19.837 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:19.837 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 19
11-11 10:38:19.837 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:19.837 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:19.837 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:19.837 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:19.837 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:19.837 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:19.838 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :5], AP_SLEEP
11-11 10:38:19.838 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 5
11-11 10:38:19.838 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 61, 2, 1,
11-11 10:38:19.839 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= CH_LOC_TRIGGER =================
11-11 10:38:19.839 I/CAE     ( 2218): display(ContextProvider.java:391) - property=[1], result=[2]
11-11 10:38:19.839 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.840 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:19.840 D/SemContextService( 2218): Service.updateContext() : service = Location Change Trigger
11-11 10:38:19.841 D/SemContextManager( 2218): onSemContextChanged() : event = Location Change Trigger
11-11 10:38:19.842 D/NSLocationMonitor( 2218): onSemContextChanged, activity : 1 result : 2 movement : -1
11-11 10:38:19.859 D/BatteryDump( 1366): wait_for_battery_event : occurred : change@/devices/platform/samsung_mobile_device/samsung_mobile_device:battery/power_supply/battery 
11-11 10:38:19.871 I/android.hardware.health@2.1-service-samsung( 1366): updateLrpSysfs: write: 228
11-11 10:38:19.898 D/io_stats( 1057): !@   8,0 r 743744 27133240 w 393455 8927164 d 174029 100473988 f 0 47783 iot 731708 0 th 0 0 0 pt 0 inp 0 0 11447.600
11-11 10:38:19.898 D/io_stats( 1057): !@ Read_top(KB): loop44(4343) 4
11-11 10:38:19.898 D/io_stats( 1057): !@ Write_top(KB): kworker/u16:6(16648) 4
11-11 10:38:19.942 I/sensors-hal( 1368): handle_sns_client_event:628, [0][384] gyro_sample_cal(3) [-0.001, 0.001, 0.000] 324588005783431
11-11 10:38:19.997 E/BatteryDump( 1366): !@new_battery_dump : 4331,17,2300,3150,100,213,213,209,0,213,228,Full,None,Good,PDIC,0,Normal,0,0,9811,0x8000,0x10000,0x0,1,4329,10000,990,
11-11 10:38:20.522 I/GnssEngineManager_FLP( 4252): updateSatelliteStatus, top4=32, top6=31, visibleSv=33, usedSv=25, usedL5Sv=0 (usedGps=6, usedGlo=5, usedBds=9, usedGal=5)
11-11 10:38:20.522 D/GnssLocationProvider_ex( 2218): SV Count : 25 / 33      (PRN, Constellation, SNR, Used)
11-11 10:38:20.522 D/GnssLocationProvider_ex( 2218): (5, GPS, 27.3, 1) (7, GPS, 31.7, 1) (9, GPS, 29.3, 1) (11, GPS, 24.3, 1) (13, GPS, 17.7, 0) (20, GPS, 20.5, 1) 
11-11 10:38:20.522 D/GnssLocationProvider_ex( 2218): (30, GPS, 25.0, 1) (14, GLONASS, 32.5, 1) (22, GLONASS, 32.8, 1) (15, GLONASS, 18.3, 1) (5, GLONASS, 29.5, 1) (21, GLONASS, 29.1, 1) 
11-11 10:38:20.522 D/GnssLocationProvider_ex( 2218): (45, BEIDOU, 23.4, 1) (42, BEIDOU, 26.3, 0) (33, BEIDOU, 31.1, 0) (30, BEIDOU, 20.0, 0) (27, BEIDOU, 21.4, 1) (26, BEIDOU, 31.8, 1) 
11-11 10:38:20.522 D/GnssLocationProvider_ex( 2218): (24, BEIDOU, 19.8, 1) (9, BEIDOU, 25.0, 1) (2, GALILEO, 22.1, 1) (7, GALILEO, 32.6, 1) (8, GALILEO, 25.6, 1) (25, GALILEO, 26.3, 1) 
11-11 10:38:20.522 D/GnssLocationProvider_ex( 2218): (26, GALILEO, 25.5, 0) (29, GALILEO, 23.9, 0) (33, GALILEO, 21.0, 1) (24, BEIDOU, 19.1, 1) (26, BEIDOU, 33.9, 1) (27, BEIDOU, 17.5, 1) 
11-11 10:38:20.522 D/GnssLocationProvider_ex( 2218): (33, BEIDOU, 30.9, 0) (42, BEIDOU, 29.1, 0) (45, BEIDOU, 29.2, 1) 
11-11 10:38:20.528 D/GnssLocationProvider( 2218): reportLocation
11-11 10:38:20.530 I/GnssEngineManager_FLP( 4252): onGpsLocationChanged, provider=gps / isMock=false / speed=0.0 / time=1731317900000 / elapsed=324588588359458
11-11 10:38:20.531 I/OldStopController_FLP( 4252): onChangedGlpLocation, isGpsStopped= false, isReportingLL= false
11-11 10:38:20.534 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:20.538 D/SLocation( 2218): PositionManager - PassiveonLocationChanged gps 1731317900000
11-11 10:38:20.538 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:20.538 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:20.539 I/SLocation( 2218): GeofenceLocationFilter - fire alarm & cancel, com.samsung.android.location.geofence.geopoint.d@5eeb13a
11-11 10:38:20.539 D/SLocation( 2218): CellManagerFmm - refreshCellInfo
11-11 10:38:20.539 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:20.540 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:20.540 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:20.540 I/FusedLocation(16769): (REDACTED) location delivery to %s blocked - too close
11-11 10:38:20.540 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:20.540 D/SLocation( 2218): CellManagerFmm - isChangedCellInfo - true
11-11 10:38:20.540 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:20.540 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 1 / [34]
11-11 10:38:20.541 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:20.542 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:20.543 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:20.543 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:20.543 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:20.544 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 34, len : 1
11-11 10:38:20.545 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 34,
11-11 10:38:20.545 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:20.546 D/SensorService( 2218): setSContextDataLocked 223717c1
11-11 10:38:20.546 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:20.546 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xc1, 0x17, 0x37, 0x22)
11-11 10:38:20.546 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:20.546 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:20.546 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:20.546 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:20.547 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:20.547 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:20.547 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:20.548 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 23 / [2, 30, 246, 27, 46, 2, 228, 160, 92, 0, 0, 0, 4, 1, 0, 0, 1, 147, 26, 150, 162, 224, 0]
11-11 10:38:20.548 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:20.548 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:20.548 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:20.548 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.549 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:20.549 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:20.549 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:20.550 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 2, len : 23
11-11 10:38:20.550 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:20.551 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(26) = 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 118, -8, 1, 3, 0, 0, 0, 0, 2, 17, 118, -8
11-11 10:38:20.551 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 2, 30, -10, 27, 46, 2, -28, -96, 92, 0, 0, 0, 4, 1, 0, 0, 1, -109, 26, -106, -94, -32, 0,
11-11 10:38:20.551 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(38) = 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -98, -8, 30, -10, 26, 32, 2, -28, -97, -40, 0, 0, 0, 4, 2, 17, 118, -8, 0, 0, 0, 0
11-11 10:38:20.551 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 20,
11-11 10:38:20.552 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 34, 0, 0, 0
11-11 10:38:20.552 D/SensorService( 2218): setSContextDataLocked ints length 8 , byte length 26
11-11 10:38:20.552 D/SensorService( 2218): setSContextDataLocked 23717c1
11-11 10:38:20.552 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:20.552 I/sensors-hal( 1368): sendContextData:285, sensor hal 26, (0xc1, 0x17, 0x37, 0x2)
11-11 10:38:20.552 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:20.552 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:20.552 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:20.553 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:20.554 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:20.554 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:20.554 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:20.554 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:20.554 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:20.554 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:20.554 D/SLocation( 2218): PositionManager - PassiveonLocationChanged fused 1731317900506
11-11 10:38:20.554 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:20.554 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:20.554 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:20.554 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 20
11-11 10:38:20.554 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:20.554 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:20.555 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:20.555 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:20.555 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:20.555 W/SLocation( 2218): PositionManager - do not refresh last location about fused location
11-11 10:38:20.555 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:20.555 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:20.555 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:20.555 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:20.555 D/SLocation( 2218): ARDistanceGetARDistance - ignore request, waiting for packet
11-11 10:38:20.555 D/SLocation( 2218): PositionManager - receive fused location
11-11 10:38:20.555 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :26], AP_SLEEP
11-11 10:38:20.555 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 26
11-11 10:38:20.555 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 118, -8, 1, 3, 0, 0, 0, 0, 2, 17, 118, -8,
11-11 10:38:20.556 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:20.556 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:20.556 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.556 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 118, -8, 1, 3, 0, 0, 0, 0, 2, 17, 118, -8]
11-11 10:38:20.556 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:20.556 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:26
11-11 10:38:20.556 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.556 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.557 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 20,
11-11 10:38:20.557 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 2, 0, 0, 0
11-11 10:38:20.557 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:20.557 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:20.558 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:20.558 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:20.558 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:20.558 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:20.558 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:20.558 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:20.558 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:20.558 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 20
11-11 10:38:20.558 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:20.558 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:20.558 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:20.558 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:20.558 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:20.558 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:20.558 I/SLocation( 2218): SemContextParser -  packet Length : 21packet total size : 26
11-11 10:38:20.558 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:20.558 I/SLocation( 2218): SemContextParser - packet : [5, 7, 1, 0, 0, 0, 0, 2, 17, 118, -8, 1, 3, 0, 0, 0, 0, 2, 17, 118, -8]
11-11 10:38:20.558 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 21
11-11 10:38:20.559 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :38], AP_SLEEP
11-11 10:38:20.559 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 38
11-11 10:38:20.559 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -98, -8, 30, -10, 26, 32, 2, -28, -97, -40, 0, 0, 0, 4, 2, 17, 118, -8, 0, 0, 0, 0,
11-11 10:38:20.560 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:20.560 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.560 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.560 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:20.561 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -98, -8, 30, -10, 26, 32, 2, -28, -97, -40, 0, 0, 0, 4, 2, 17, 118, -8, 0, 0, 0, 0]
11-11 10:38:20.561 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:38
11-11 10:38:20.561 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:20.562 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:20.562 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:20.562 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:20.562 I/SLocation( 2218): SemContextParser -  packet Length : 33packet total size : 38
11-11 10:38:20.562 I/SLocation( 2218): SemContextParser - packet : [33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -98, -8, 30, -10, 26, 32, 2, -28, -97, -40, 0, 0, 0, 4, 2, 17, 118, -8, 0, 0, 0, 0]
11-11 10:38:20.562 D/SLocation( 2218): ARDistanceGetARDistance - convertSensorHubTimeToElapsedTime 324587081
11-11 10:38:20.562 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 33
11-11 10:38:20.562 D/SLocation( 2218): SCurrentLocationManager - handleCurrentLocationCoreDistance 0.0
11-11 10:38:20.563 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 20,
11-11 10:38:20.563 D/SLocation( 2218): TrackingReceiverFilterFmm - sum of ar distance : 0.0, update time : 324588644, gps loc time : 324588588
11-11 10:38:20.563 D/SLocation( 2218): TrackingReceiverFilter - sum of ar distance : 0.0, update time : 324588645, gps loc time : 324588588
11-11 10:38:20.563 D/SLocation( 2218): TrackingReceiverFilter - update last gps location from core, dist : 0.0
11-11 10:38:20.563 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:20.563 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:20.564 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:20.564 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:20.564 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:20.564 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:20.564 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 20
11-11 10:38:20.564 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:20.564 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:20.564 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:20.564 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:20.564 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:20.564 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:20.565 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:20.565 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:20.565 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 34, 0, 0, 0,
11-11 10:38:20.565 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:20.565 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:20.566 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 34, 0, 0, 0]
11-11 10:38:20.566 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.566 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.566 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:20.567 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:20.567 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:20.567 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:20.567 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:20.567 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:20.568 I/SLocation( 2218): SemContextParser - packet : [2, 34, 0, 0, 0]
11-11 10:38:20.568 D/SLocation( 2218): ARDistanceLibManager - command callback received - CURRENT_LOCATION_REQUEST_DISTANCE ERROR CODE : ERROR_NONE
11-11 10:38:20.568 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 20,
11-11 10:38:20.568 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:20.568 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:20.568 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:20.568 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:20.569 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:20.569 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:20.569 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:20.569 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 20
11-11 10:38:20.569 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:20.569 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:20.569 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:20.569 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:20.569 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:20.569 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:20.569 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:20.569 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:20.569 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 2, 0, 0, 0,
11-11 10:38:20.569 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:20.570 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:20.570 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 2, 0, 0, 0]
11-11 10:38:20.570 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:20.570 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:20.571 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:20.571 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:20.571 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.571 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:20.571 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:20.571 I/SLocation( 2218): SemContextParser - packet : [2, 2, 0, 0, 0]
11-11 10:38:20.571 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.571 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:20.571 D/SLocation( 2218): CommonCoreManager - handleCommandCallback - FUNC_TYPE : SET_LOCATION ERROR_CODE : ERROR_NONE
11-11 10:38:20.593 I/wpa_supplicant( 3695): Heartbeat 2031
11-11 10:38:20.793 D/SemContextService( 2218): lock : requestToUpdate
11-11 10:38:20.794 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for CH_LOC_TRIGGER
11-11 10:38:20.795 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -72, 61, 0, 0,
11-11 10:38:20.796 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:20.796 D/SensorService( 2218): setSContextDataLocked 3db8
11-11 10:38:20.796 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:20.796 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xb8, 0x3d, 0x0, 0x0)
11-11 10:38:20.796 I/sensors-hal( 1368): sendContextData:129, change_location_trigger 4,184
11-11 10:38:20.796 I/sensors-hal( 1368): sendUserData:116, change_location_trigger h 184 m 61 s 0
11-11 10:38:20.796 I/sensors-hal( 1368): create_send_context_data:64, change_location_trigger create_send_context_data
11-11 10:38:20.797 I/sensors-hal( 1368): send_context_data:622, change_location_trigger, -244018566922240, 1320970896291267344, msgid:700
11-11 10:38:20.798 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for CH_LOC_TRIGGER
11-11 10:38:20.799 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.799 D/SemContextService( 2218):     .requestToUpdate() : service = Location Change Trigger
11-11 10:38:20.799 D/SemContextService( 2218): unlock : requestToUpdate
11-11 10:38:20.799 D/SemContextManager( 2218):   .requestToUpdate : listener = com.android.server.location.nsflp.NSLocationMonitor$5@b3fad00, service=Location Change Trigger
11-11 10:38:20.800 I/OldStopController_FLP( 4252): StateChecker, check stationary message
11-11 10:38:20.874 I/sensors-hal( 1368): handle_sns_client_event:83, change_location_trigger_event: msgid:1025
11-11 10:38:20.874 I/sensors-hal( 1368): handle_sns_client_event:106, change_location_trigger_event: 2, 2
11-11 10:38:20.876 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(5) = 1, 1, 61, 2, 1
11-11 10:38:20.880 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 20,
11-11 10:38:20.881 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:20.881 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:20.881 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:20.881 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:20.882 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:20.882 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:20.882 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 20
11-11 10:38:20.882 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:20.882 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:20.882 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:20.882 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:20.882 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:20.882 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:20.883 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :5], AP_SLEEP
11-11 10:38:20.884 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 5
11-11 10:38:20.884 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 61, 2, 1,
11-11 10:38:20.884 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.884 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:20.885 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= CH_LOC_TRIGGER =================
11-11 10:38:20.885 I/CAE     ( 2218): display(ContextProvider.java:391) - property=[1], result=[2]
11-11 10:38:20.886 D/SemContextService( 2218): Service.updateContext() : service = Location Change Trigger
11-11 10:38:20.887 D/SemContextManager( 2218): onSemContextChanged() : event = Location Change Trigger
11-11 10:38:20.887 D/NSLocationMonitor( 2218): onSemContextChanged, activity : 1 result : 2 movement : -1
11-11 10:38:21.522 D/GnssLocationProvider_ex( 2218): SV Count : 26 / 33      (PRN, Constellation, SNR, Used)
11-11 10:38:21.523 D/GnssLocationProvider_ex( 2218): (5, GPS, 27.9, 1) (7, GPS, 32.5, 1) (9, GPS, 29.7, 1) (11, GPS, 25.4, 1) (13, GPS, 17.7, 1) (20, GPS, 21.3, 1) 
11-11 10:38:21.523 D/GnssLocationProvider_ex( 2218): (30, GPS, 22.6, 1) (14, GLONASS, 32.2, 1) (22, GLONASS, 32.2, 1) (15, GLONASS, 18.3, 1) (5, GLONASS, 28.9, 1) (21, GLONASS, 28.0, 1) 
11-11 10:38:21.523 D/GnssLocationProvider_ex( 2218): (45, BEIDOU, 24.1, 1) (42, BEIDOU, 26.5, 0) (33, BEIDOU, 31.4, 0) (30, BEIDOU, 20.0, 0) (27, BEIDOU, 21.4, 1) (26, BEIDOU, 31.1, 1) 
11-11 10:38:21.523 D/GnssLocationProvider_ex( 2218): (24, BEIDOU, 19.0, 1) (9, BEIDOU, 25.7, 1) (2, GALILEO, 20.7, 1) (7, GALILEO, 32.0, 1) (8, GALILEO, 25.0, 1) (25, GALILEO, 24.3, 1) 
11-11 10:38:21.523 D/GnssLocationProvider_ex( 2218): (26, GALILEO, 25.5, 0) (29, GALILEO, 22.6, 0) (33, GALILEO, 21.2, 1) (24, BEIDOU, 19.1, 1) (26, BEIDOU, 33.2, 1) (27, BEIDOU, 17.5, 1) 
11-11 10:38:21.523 D/GnssLocationProvider_ex( 2218): (33, BEIDOU, 30.2, 0) (42, BEIDOU, 29.0, 0) (45, BEIDOU, 29.1, 1) 
11-11 10:38:21.525 I/GnssEngineManager_FLP( 4252): updateSatelliteStatus, top4=32, top6=32, visibleSv=33, usedSv=26, usedL5Sv=0 (usedGps=7, usedGlo=5, usedBds=9, usedGal=5)
11-11 10:38:21.527 D/GnssLocationProvider( 2218): reportLocation
11-11 10:38:21.530 I/GnssEngineManager_FLP( 4252): onGpsLocationChanged, provider=gps / isMock=false / speed=0.0 / time=1731317901000 / elapsed=324589589114614
11-11 10:38:21.530 I/OldStopController_FLP( 4252): onChangedGlpLocation, isGpsStopped= false, isReportingLL= false
11-11 10:38:21.535 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:21.538 D/SLocation( 2218): PositionManager - PassiveonLocationChanged gps 1731317901000
11-11 10:38:21.538 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:21.538 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:21.538 D/SLocation( 2218): GeofenceLocationFilter - location sent before 999, need to filter / provider : gps, accuracy : 4.4805784
11-11 10:38:21.538 I/SLocation( 2218): GeofenceLocationFilter - alarm set, next time to send location : 324594621, com.samsung.android.location.geofence.geopoint.d@413ab48
11-11 10:38:21.541 D/SLocation( 2218): CellManagerFmm - refreshCellInfo
11-11 10:38:21.543 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:21.543 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:21.544 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:21.544 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:21.544 D/SLocation( 2218): CellManagerFmm - isChangedCellInfo - true
11-11 10:38:21.546 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:21.546 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 1 / [34]
11-11 10:38:21.546 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:21.546 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:21.549 I/FusedLocation(16769): (REDACTED) location delivery to %s blocked - too close
11-11 10:38:21.550 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:21.551 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:21.551 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:21.553 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 34, len : 1
11-11 10:38:21.553 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 34,
11-11 10:38:21.554 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:21.554 D/SensorService( 2218): setSContextDataLocked 223717c1
11-11 10:38:21.554 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:21.554 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xc1, 0x17, 0x37, 0x22)
11-11 10:38:21.554 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:21.554 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:21.554 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:21.554 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:21.556 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:21.556 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:21.556 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:21.557 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.557 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 23 / [2, 30, 246, 26, 247, 2, 228, 160, 1, 0, 0, 0, 4, 1, 0, 0, 1, 147, 26, 150, 166, 200, 0]
11-11 10:38:21.557 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:21.557 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:21.557 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:21.557 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:21.557 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:21.557 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 2, len : 23
11-11 10:38:21.557 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:21.558 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 2, 30, -10, 26, -9, 2, -28, -96, 1, 0, 0, 0, 4, 1, 0, 0, 1, -109, 26, -106, -90, -56, 0,
11-11 10:38:21.558 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(26) = 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 122, -32, 1, 3, 0, 0, 0, 0, 2, 17, 122, -32
11-11 10:38:21.558 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:21.558 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(38) = 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -94, -32, 30, -10, 27, 32, 2, -28, -96, 92, 0, 0, 0, 4, 2, 17, 122, -32, 0, 0, 0, 0
11-11 10:38:21.559 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 34, 0, 0, 0
11-11 10:38:21.560 D/SensorService( 2218): setSContextDataLocked ints length 8 , byte length 26
11-11 10:38:21.560 D/SensorService( 2218): setSContextDataLocked 23717c1
11-11 10:38:21.560 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:21.560 I/sensors-hal( 1368): sendContextData:285, sensor hal 26, (0xc1, 0x17, 0x37, 0x2)
11-11 10:38:21.560 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:21.560 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:21.560 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:21.560 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:21.561 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 21,
11-11 10:38:21.562 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:21.562 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:21.562 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:21.562 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.562 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:21.562 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:21.562 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:21.562 D/SLocation( 2218): PositionManager - PassiveonLocationChanged fused 1731317901508
11-11 10:38:21.562 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:21.563 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:21.563 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:21.563 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:21.563 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 21
11-11 10:38:21.563 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:21.563 W/SLocation( 2218): PositionManager - do not refresh last location about fused location
11-11 10:38:21.563 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:21.563 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:21.563 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:21.563 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:21.563 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:21.563 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:21.563 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:21.563 D/SLocation( 2218): ARDistanceGetARDistance - ignore request, waiting for packet
11-11 10:38:21.563 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:21.563 D/SLocation( 2218): PositionManager - receive fused location
11-11 10:38:21.565 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.565 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.565 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 2, 0, 0, 0
11-11 10:38:21.566 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :26], AP_SLEEP
11-11 10:38:21.566 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 26
11-11 10:38:21.566 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 122, -32, 1, 3, 0, 0, 0, 0, 2, 17, 122, -32,
11-11 10:38:21.567 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:21.567 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:21.567 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 122, -32, 1, 3, 0, 0, 0, 0, 2, 17, 122, -32]
11-11 10:38:21.568 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:21.568 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:26
11-11 10:38:21.568 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 21,
11-11 10:38:21.569 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:21.569 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:21.569 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:21.569 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:21.569 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:21.569 I/SLocation( 2218): SemContextParser -  packet Length : 21packet total size : 26
11-11 10:38:21.569 I/SLocation( 2218): SemContextParser - packet : [5, 7, 1, 0, 0, 0, 0, 2, 17, 122, -32, 1, 3, 0, 0, 0, 0, 2, 17, 122, -32]
11-11 10:38:21.569 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:21.569 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:21.569 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:21.569 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:21.569 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 21
11-11 10:38:21.569 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:21.569 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 21
11-11 10:38:21.569 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:21.569 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:21.569 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:21.569 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:21.570 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:21.571 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.572 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.573 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :38], AP_SLEEP
11-11 10:38:21.573 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 38
11-11 10:38:21.573 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -94, -32, 30, -10, 27, 32, 2, -28, -96, 92, 0, 0, 0, 4, 2, 17, 122, -32, 0, 0, 0, 0,
11-11 10:38:21.574 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:21.574 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:21.574 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -94, -32, 30, -10, 27, 32, 2, -28, -96, 92, 0, 0, 0, 4, 2, 17, 122, -32, 0, 0, 0, 0]
11-11 10:38:21.575 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:21.576 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:21.576 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:21.576 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:21.576 I/SLocation( 2218): SemContextParser -  packet Length : 33packet total size : 38
11-11 10:38:21.576 I/SLocation( 2218): SemContextParser - packet : [33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -94, -32, 30, -10, 27, 32, 2, -28, -96, 92, 0, 0, 0, 4, 2, 17, 122, -32, 0, 0, 0, 0]
11-11 10:38:21.576 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:38
11-11 10:38:21.576 D/SLocation( 2218): ARDistanceGetARDistance - convertSensorHubTimeToElapsedTime 324588082
11-11 10:38:21.576 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 33
11-11 10:38:21.576 D/SLocation( 2218): SCurrentLocationManager - handleCurrentLocationCoreDistance 0.0
11-11 10:38:21.577 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 21,
11-11 10:38:21.577 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:21.577 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:21.577 D/SLocation( 2218): TrackingReceiverFilterFmm - sum of ar distance : 0.0, update time : 324589659, gps loc time : 324589589
11-11 10:38:21.578 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:21.578 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:21.578 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:21.578 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:21.578 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 21
11-11 10:38:21.578 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:21.578 D/SLocation( 2218): TrackingReceiverFilter - sum of ar distance : 0.0, update time : 324589659, gps loc time : 324589589
11-11 10:38:21.578 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:21.578 D/SLocation( 2218): TrackingReceiverFilter - update last gps location from core, dist : 0.0
11-11 10:38:21.578 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:21.578 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:21.578 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:21.578 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:21.579 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:21.579 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:21.579 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 34, 0, 0, 0,
11-11 10:38:21.579 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:21.579 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:21.579 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 34, 0, 0, 0]
11-11 10:38:21.580 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:21.580 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 21,
11-11 10:38:21.580 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:21.580 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:21.580 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.581 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.581 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:21.581 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:21.581 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:21.581 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:21.581 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 21
11-11 10:38:21.581 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:21.581 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:21.581 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:21.581 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:21.581 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:21.581 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:21.581 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:21.581 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:21.581 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:21.581 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 2, 0, 0, 0,
11-11 10:38:21.582 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:21.582 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:21.582 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.582 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:21.582 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:21.582 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.582 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 2, 0, 0, 0]
11-11 10:38:21.582 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:21.582 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:21.582 I/SLocation( 2218): SemContextParser - packet : [2, 34, 0, 0, 0]
11-11 10:38:21.582 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:21.582 D/SLocation( 2218): ARDistanceLibManager - command callback received - CURRENT_LOCATION_REQUEST_DISTANCE ERROR CODE : ERROR_NONE
11-11 10:38:21.582 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:21.583 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:21.584 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:21.584 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:21.584 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:21.584 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:21.584 I/SLocation( 2218): SemContextParser - packet : [2, 2, 0, 0, 0]
11-11 10:38:21.585 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:21.585 D/SLocation( 2218): CommonCoreManager - handleCommandCallback - FUNC_TYPE : SET_LOCATION ERROR_CODE : ERROR_NONE
11-11 10:38:21.803 D/SemContextService( 2218): lock : requestToUpdate
11-11 10:38:21.804 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for CH_LOC_TRIGGER
11-11 10:38:21.804 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -72, 61, 0, 0,
11-11 10:38:21.805 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:21.806 D/SensorService( 2218): setSContextDataLocked 3db8
11-11 10:38:21.806 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:21.807 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xb8, 0x3d, 0x0, 0x0)
11-11 10:38:21.807 I/sensors-hal( 1368): sendContextData:129, change_location_trigger 4,184
11-11 10:38:21.807 I/sensors-hal( 1368): sendUserData:116, change_location_trigger h 184 m 61 s 0
11-11 10:38:21.807 I/sensors-hal( 1368): create_send_context_data:64, change_location_trigger create_send_context_data
11-11 10:38:21.807 I/sensors-hal( 1368): send_context_data:622, change_location_trigger, -244018566922240, 1320970896291267344, msgid:700
11-11 10:38:21.808 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for CH_LOC_TRIGGER
11-11 10:38:21.808 D/SemContextService( 2218):     .requestToUpdate() : service = Location Change Trigger
11-11 10:38:21.808 D/SemContextService( 2218): unlock : requestToUpdate
11-11 10:38:21.808 D/SemContextManager( 2218):   .requestToUpdate : listener = com.android.server.location.nsflp.NSLocationMonitor$5@b3fad00, service=Location Change Trigger
11-11 10:38:21.809 I/OldStopController_FLP( 4252): StateChecker, check stationary message
11-11 10:38:21.809 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.845 I/sensors-hal( 1368): handle_sns_client_event:83, change_location_trigger_event: msgid:1025
11-11 10:38:21.845 I/sensors-hal( 1368): handle_sns_client_event:106, change_location_trigger_event: 2, 2
11-11 10:38:21.848 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(5) = 1, 1, 61, 2, 1
11-11 10:38:21.850 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 21,
11-11 10:38:21.851 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:21.851 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:21.852 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:21.852 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:21.852 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:21.852 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:21.852 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 21
11-11 10:38:21.852 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:21.852 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:21.852 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:21.852 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:21.852 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:21.852 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:21.853 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :5], AP_SLEEP
11-11 10:38:21.854 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 5
11-11 10:38:21.854 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 61, 2, 1,
11-11 10:38:21.854 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= CH_LOC_TRIGGER =================
11-11 10:38:21.854 I/CAE     ( 2218): display(ContextProvider.java:391) - property=[1], result=[2]
11-11 10:38:21.855 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.855 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:21.855 D/SemContextService( 2218): Service.updateContext() : service = Location Change Trigger
11-11 10:38:21.856 D/SemContextManager( 2218): onSemContextChanged() : event = Location Change Trigger
11-11 10:38:21.856 D/NSLocationMonitor( 2218): onSemContextChanged, activity : 1 result : 2 movement : -1
11-11 10:38:21.902 D/io_stats( 1057): !@   8,0 r 743744 27133240 w 393457 8927172 d 174029 100473988 f 0 47783 iot 731716 0 th 0 0 0 pt 0 inp 0 0 11449.605
11-11 10:38:21.939 I/sensors-hal( 1368): handle_sns_client_event:628, [0][491] gyro_sample_cal(3) [-0.001, 0.001, 0.000] 324590000061660
11-11 10:38:22.521 D/GnssLocationProvider_ex( 2218): SV Count : 26 / 33      (PRN, Constellation, SNR, Used)
11-11 10:38:22.522 I/GnssEngineManager_FLP( 4252): updateSatelliteStatus, top4=31, top6=31, visibleSv=33, usedSv=26, usedL5Sv=0 (usedGps=7, usedGlo=5, usedBds=9, usedGal=5)
11-11 10:38:22.522 D/GnssLocationProvider_ex( 2218): (5, GPS, 26.3, 1) (7, GPS, 32.2, 1) (9, GPS, 28.9, 1) (11, GPS, 25.3, 1) (13, GPS, 17.7, 1) (20, GPS, 21.3, 1) 
11-11 10:38:22.522 D/GnssLocationProvider_ex( 2218): (30, GPS, 22.6, 1) (14, GLONASS, 31.1, 1) (22, GLONASS, 31.3, 1) (15, GLONASS, 18.3, 1) (5, GLONASS, 28.0, 1) (21, GLONASS, 29.3, 1) 
11-11 10:38:22.522 D/GnssLocationProvider_ex( 2218): (45, BEIDOU, 24.0, 1) (42, BEIDOU, 27.1, 0) (33, BEIDOU, 31.5, 0) (30, BEIDOU, 20.0, 0) (27, BEIDOU, 21.0, 1) (26, BEIDOU, 30.7, 1) 
11-11 10:38:22.522 D/GnssLocationProvider_ex( 2218): (24, BEIDOU, 19.0, 1) (9, BEIDOU, 26.1, 1) (2, GALILEO, 20.7, 1) (7, GALILEO, 31.7, 1) (8, GALILEO, 25.3, 1) (25, GALILEO, 25.7, 1) 
11-11 10:38:22.522 D/GnssLocationProvider_ex( 2218): (26, GALILEO, 23.5, 0) (29, GALILEO, 23.5, 0) (33, GALILEO, 21.2, 1) (24, BEIDOU, 19.1, 1) (26, BEIDOU, 33.2, 1) (27, BEIDOU, 17.5, 1) 
11-11 10:38:22.522 D/GnssLocationProvider_ex( 2218): (33, BEIDOU, 30.8, 0) (42, BEIDOU, 30.1, 0) (45, BEIDOU, 27.9, 1) 
11-11 10:38:22.523 D/GnssLocationProvider( 2218): reportLocation
11-11 10:38:22.525 I/GnssEngineManager_FLP( 4252): onGpsLocationChanged, provider=gps / isMock=false / speed=0.0 / time=1731317902000 / elapsed=324590588587322
11-11 10:38:22.526 I/OldStopController_FLP( 4252): onChangedGlpLocation, isGpsStopped= false, isReportingLL= false
11-11 10:38:22.528 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:22.533 D/SLocation( 2218): PositionManager - PassiveonLocationChanged gps 1731317902000
11-11 10:38:22.534 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:22.534 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:22.534 D/SLocation( 2218): GeofenceLocationFilter - location sent before 1995, need to filter / provider : gps, accuracy : 4.321002
11-11 10:38:22.535 D/SLocation( 2218): CellManagerFmm - refreshCellInfo
11-11 10:38:22.535 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:22.536 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:22.536 W/Settings( 2218): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
11-11 10:38:22.536 D/SLocation( 2218): CellManagerFmm - registered cell is not lte & nr
11-11 10:38:22.536 D/SLocation( 2218): CellManagerFmm - isChangedCellInfo - true
11-11 10:38:22.536 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:22.536 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 1 / [34]
11-11 10:38:22.536 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:22.537 V/LocationManagerService( 2218): passive provider registration 1000/android[SensorNotificationService]/79876FA9 dropped delivery - too close
11-11 10:38:22.537 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:22.537 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:22.538 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:22.540 I/FusedLocation(16769): (REDACTED) location delivery to %s blocked - too close
11-11 10:38:22.540 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 34, len : 1
11-11 10:38:22.541 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 34,
11-11 10:38:22.542 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:22.542 D/SensorService( 2218): setSContextDataLocked 223717c1
11-11 10:38:22.542 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:22.542 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xc1, 0x17, 0x37, 0x22)
11-11 10:38:22.542 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:22.542 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:22.542 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:22.543 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:22.543 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:22.543 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:22.543 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:22.544 D/SLocation( 2218): SLocationCoreSem - send to coreSem, packet length : 23 / [2, 30, 246, 26, 133, 2, 228, 160, 150, 0, 0, 0, 4, 1, 0, 0, 1, 147, 26, 150, 170, 176, 0]
11-11 10:38:22.544 D/SemContextLocationCoreAttribute( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:22.544 D/SemContextService( 2218): lock : changeParameters
11-11 10:38:22.544 D/SemContext.CaeProvider.LocationCoreImpl( 2218): setAttribute() mode : 0 action : 23
11-11 10:38:22.544 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:513) - [setProperty 01] Mutex is locked for SLOCATION_RUNNER
11-11 10:38:22.544 I/CAE     ( 2218): setPropertyValue(SLocationRunner.java:116) - SLocationRunner setProperty header : 2, len : 23
11-11 10:38:22.545 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 23, 55, 2, 30, -10, 26, -123, 2, -28, -96, -106, 0, 0, 0, 4, 1, 0, 0, 1, -109, 26, -106, -86, -80, 0,
11-11 10:38:22.545 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:22.545 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:22.545 D/SensorService( 2218): setSContextDataLocked ints length 8 , byte length 26
11-11 10:38:22.546 D/SensorService( 2218): setSContextDataLocked 23717c1
11-11 10:38:22.546 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:22.546 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:22.546 I/sensors-hal( 1368): sendContextData:285, sensor hal 26, (0xc1, 0x17, 0x37, 0x2)
11-11 10:38:22.547 E/sensors-hal( 1368): sendContextData:131, slocationcore h 193 m 23 s 55
11-11 10:38:22.547 I/sensors-hal( 1368): sendUserData:117, slocationcore sendUserData
11-11 10:38:22.547 E/sensors-hal( 1368): create_send_context_data:62, slocationcore create_send_context_data
11-11 10:38:22.547 I/sensors-hal( 1368): send_context_data:622, slocationcore, 4986366670857974562, 1320970896291267344, msgid:700
11-11 10:38:22.547 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:22.547 W/CAE     ( 2218): setCAProperty(ContextAwareService.java:519) - [setProperty 02] Mutex is unlocked for SLOCATION_RUNNER
11-11 10:38:22.547 D/SemContextService( 2218): unlock : changeParameters
11-11 10:38:22.547 D/SemContextManager( 2218):   .changeParameters : listener = com.samsung.android.location.semcontext.a@a013b56, service=SLocation Core
11-11 10:38:22.548 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(26) = 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 126, -56, 1, 3, 0, 0, 0, 0, 2, 17, 126, -56
11-11 10:38:22.548 D/SLocation( 2218): PositionManager - PassiveonLocationChanged fused 1731317902506
11-11 10:38:22.548 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(38) = 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -90, -56, 30, -10, 27, 32, 2, -28, -97, -4, 0, 0, 0, 4, 2, 17, 126, -56, 0, 0, 0, 0
11-11 10:38:22.548 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 34, 0, 0, 0
11-11 10:38:22.548 W/SLocation( 2218): PositionManager - do not refresh last location about fused location
11-11 10:38:22.548 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD - receive location
11-11 10:38:22.548 D/SLocation( 2218): ARDistanceBigData - BIGDATA ARD disabled, onReceiveLocation
11-11 10:38:22.548 D/SLocation( 2218): ARDistanceLibManager - request distance diff to AR Distance Library
11-11 10:38:22.548 D/SLocation( 2218): ARDistanceGetARDistance - ignore request, waiting for packet
11-11 10:38:22.549 D/SLocation( 2218): PositionManager - receive fused location
11-11 10:38:22.549 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:22.549 E/sensors-hal( 1368): handle_sns_client_event:76, slocationcore_event: msgid:1025
11-11 10:38:22.549 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 22,
11-11 10:38:22.550 D/SensorHubManager( 2218): onGetSensorHubDataLocked: library(10) = 1, 1, 55, 0, 5, 2, 2, 0, 0, 0
11-11 10:38:22.550 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:22.550 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:22.550 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:22.550 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:22.550 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:22.550 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:22.551 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 22
11-11 10:38:22.551 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:22.551 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:22.551 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:22.551 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:22.551 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:22.551 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:22.551 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :26], AP_SLEEP
11-11 10:38:22.551 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 26
11-11 10:38:22.551 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 126, -56, 1, 3, 0, 0, 0, 0, 2, 17, 126, -56,
11-11 10:38:22.552 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:22.552 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:22.552 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 21, 5, 7, 1, 0, 0, 0, 0, 2, 17, 126, -56, 1, 3, 0, 0, 0, 0, 2, 17, 126, -56]
11-11 10:38:22.552 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:26
11-11 10:38:22.553 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:22.553 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:22.553 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:22.553 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 22,
11-11 10:38:22.553 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:22.553 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:22.553 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:22.553 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:22.553 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:22.553 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:22.553 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 22
11-11 10:38:22.553 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:22.554 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:22.554 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:22.554 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:22.554 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:22.554 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:22.554 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:22.554 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:22.554 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:22.554 I/SLocation( 2218): SemContextParser -  packet Length : 21packet total size : 26
11-11 10:38:22.554 I/SLocation( 2218): SemContextParser - packet : [5, 7, 1, 0, 0, 0, 0, 2, 17, 126, -56, 1, 3, 0, 0, 0, 0, 2, 17, 126, -56]
11-11 10:38:22.554 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 21
11-11 10:38:22.555 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :38], AP_SLEEP
11-11 10:38:22.555 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 38
11-11 10:38:22.555 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -90, -56, 30, -10, 27, 32, 2, -28, -97, -4, 0, 0, 0, 4, 2, 17, 126, -56, 0, 0, 0, 0,
11-11 10:38:22.555 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:22.555 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:22.555 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:22.555 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 33, 33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -90, -56, 30, -10, 27, 32, 2, -28, -97, -4, 0, 0, 0, 4, 2, 17, 126, -56, 0, 0, 0, 0]
11-11 10:38:22.556 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:22.556 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:38
11-11 10:38:22.556 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 22,
11-11 10:38:22.557 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:22.557 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:22.557 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:22.558 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:22.558 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:22.558 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:22.558 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:22.558 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:22.558 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:22.558 I/SLocation( 2218): SemContextParser -  packet Length : 33packet total size : 38
11-11 10:38:22.558 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:22.558 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 22
11-11 10:38:22.558 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:22.558 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:22.558 I/SLocation( 2218): SemContextParser - packet : [33, 0, 0, 0, 0, 0, 0, 1, -109, 26, -106, -90, -56, 30, -10, 27, 32, 2, -28, -97, -4, 0, 0, 0, 4, 2, 17, 126, -56, 0, 0, 0, 0]
11-11 10:38:22.559 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:22.559 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:22.559 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:22.559 D/SLocation( 2218): ARDistanceGetARDistance - convertSensorHubTimeToElapsedTime 324589081
11-11 10:38:22.559 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:22.559 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 33
11-11 10:38:22.559 D/SLocation( 2218): SCurrentLocationManager - handleCurrentLocationCoreDistance 0.0
11-11 10:38:22.559 D/SLocation( 2218): TrackingReceiverFilterFmm - sum of ar distance : 0.0, update time : 324590641, gps loc time : 324590588
11-11 10:38:22.559 D/SLocation( 2218): TrackingReceiverFilter - sum of ar distance : 0.0, update time : 324590641, gps loc time : 324590588
11-11 10:38:22.559 D/SLocation( 2218): TrackingReceiverFilter - update last gps location from core, dist : 0.0
11-11 10:38:22.559 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:22.560 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:22.561 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:22.561 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:22.561 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 34, 0, 0, 0,
11-11 10:38:22.562 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:22.562 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:22.563 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 34, 0, 0, 0]
11-11 10:38:22.563 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:22.563 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:22.563 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -63, 14, 9, 38, 22,
11-11 10:38:22.564 D/SensorService( 2218): setSContextDataLocked ints length 3 , byte length 5
11-11 10:38:22.564 D/SensorService( 2218): setSContextDataLocked 26090ec1
11-11 10:38:22.564 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:22.564 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:22.564 I/sensors-hal( 1368): sendContextData:285, sensor hal 5, (0xc1, 0xe, 0x9, 0x26)
11-11 10:38:22.564 I/sensors-hal( 1368): sendContextData:228, activities 5 c1, 1
11-11 10:38:22.564 I/sensors-hal( 1368): sendUserData:249, Activities cmd 0xc1 0xe
11-11 10:38:22.564 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:22.564 I/sensors-hal( 1368): sendUserData:263, Activities system time h 9 m 38 s 22
11-11 10:38:22.564 I/sensors-hal( 1368): create_send_context_data:78, sending create_send_context_data
11-11 10:38:22.564 I/sensors-hal( 1368): send_context_data:622, activities, 4914309220830019584, 1320970896291267344, msgid:700
11-11 10:38:22.564 I/sensors-hal( 1368): sendContextData:93, common_info 5
11-11 10:38:22.565 I/sensors-hal( 1368): sendUserData:116, CommonInfo 0xc1 0xe 0x9 0x26
11-11 10:38:22.565 I/sensors-hal( 1368): create_send_context_data:66, sending create_send_context_data
11-11 10:38:22.565 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:22.565 I/sensors-hal( 1368): send_context_data:622, common_info, 4914309147815575552, 1320970896291267344, msgid:700
11-11 10:38:22.565 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:22.565 I/SLocation( 2218): SemContextParser - packet : [2, 34, 0, 0, 0]
11-11 10:38:22.565 D/SLocation( 2218): ARDistanceLibManager - command callback received - CURRENT_LOCATION_REQUEST_DISTANCE ERROR CODE : ERROR_NONE
11-11 10:38:22.565 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:22.565 D/CAE     ( 2218): onGetSensorHubData(SensorHubParserProvider.java:89) - onGetSensorHubData Event [event buffer len :10], AP_SLEEP
11-11 10:38:22.565 I/CAE     ( 2218): parse(SensorHubParserProvider.java:190) - buffer size = 10
11-11 10:38:22.566 I/CAE     ( 2218): parse(SensorHubParserProvider.java:201) - 1, 1, 55, 0, 5, 2, 2, 0, 0, 0,
11-11 10:38:22.566 I/CAE     ( 2218): parse(SLocationRunner.java:88) - SLocationRunner parse start : 3
11-11 10:38:22.566 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:22.566 D/CAE     ( 2218): display(ContextProvider.java:375) - ================= SLOCATION_RUNNER =================
11-11 10:38:22.567 I/sensors-hal( 1368): ssc_conn_resp_cb:840, resp_value = 0
11-11 10:38:22.567 I/CAE     ( 2218): display(ContextProvider.java:391) - ExtraDataArray=[1, 1, 55, 0, 5, 2, 2, 0, 0, 0]
11-11 10:38:22.567 D/SemContextService( 2218): Service.updateContext() : service = SLocation Core
11-11 10:38:22.567 D/SemContextManager( 2218): onSemContextChanged() : event = SLocation Core
11-11 10:38:22.567 D/SLocation( 2218): SLocationCoreSem - SemContextChanged type = 47, packet received
11-11 10:38:22.568 I/SLocation( 2218): SemContextParser -  parse start : 3
11-11 10:38:22.568 I/SLocation( 2218): SemContextParser -  packet Length : 5packet total size : 10
11-11 10:38:22.568 I/CAE     ( 2218): parse(SLocationRunner.java:96) - SLocationRunner parse end:10
11-11 10:38:22.568 I/SLocation( 2218): SemContextParser - packet : [2, 2, 0, 0, 0]
11-11 10:38:22.568 D/SLocation( 2218): CommonCoreManager - received Extra Data from core, len : 5
11-11 10:38:22.568 D/SLocation( 2218): CommonCoreManager - handleCommandCallback - FUNC_TYPE : SET_LOCATION ERROR_CODE : ERROR_NONE
11-11 10:38:22.662 D/LocationManagerService( 2218): gps provider removed registration from 10222/com.google.android.gms[location_accuracy]/B4545304
11-11 10:38:22.663 E/RequestManager_FLP( 4252): [LocationManager] Location remove B4545304 from com.google.android.gms
11-11 10:38:22.664 I/LocationRequestData_FLP( 4252): Remove in requestInfoList, B4545304 / ListSize[gps]=0
11-11 10:38:22.664 D/GnssLocationProvider( 2218): setRequest ProviderRequest[OFF]
11-11 10:38:22.665 I/OldStopController_FLP( 4252): onMinIntervalChanged=-1
11-11 10:38:22.665 I/OldStopController_FLP( 4252): motionMonitorComplete
11-11 10:38:22.665 I/OldStopController_FLP( 4252): removeLastLocationUpdate
11-11 10:38:22.665 D/GnssLocationProvider( 2218): mStarted =  true, isEnabled = true
11-11 10:38:22.666 D/GnssLocationProvider( 2218): stopNavigating, mStarted=true
11-11 10:38:22.666 I/LocSvc_GnssInterface( 1365): ===> stop line 320 
11-11 10:38:22.666 D/SemContextService( 2218): lock : unregisterCallback
11-11 10:38:22.667 D/SemContextService( 2218): Service.removeListenerLocked() : listener = com.samsung.android.hardware.context.SemContextService$Listener@886a706, service = Location Change Trigger, used = 0
11-11 10:38:22.667 D/SensorService( 2218): Calling activate off 41
11-11 10:38:22.667 W/CAE     ( 2218): unregisterCallback(ContextAwareService.java:234) - [unregi 01] Mutex is locked for CH_LOC_TRIGGER
11-11 10:38:22.667 I/sensors-hal( 1368): activate:419, android.sensor.gyroscope/41 en=0
11-11 10:38:22.667 W/AlarmManager( 2218): Unrecognized alarm listener com.android.server.location.gnss.GnssLocationProvider$$ExternalSyntheticLambda21@a356da9
11-11 10:38:22.667 W/CAE     ( 2218): getListener(ListenerListManager.java:127) - [getListener1]  com.samsung.android.contextaware.ContextAwareManager$CaListenerDelegate@fd9ca68
11-11 10:38:22.668 W/CAE     ( 2218): getListener(ListenerListManager.java:128) - [getListener2]  com.samsung.android.contextaware.manager.ContextAwareService$Listener@f59f98b
11-11 10:38:22.668 W/AlarmManager( 2218): Unrecognized alarm listener com.android.server.location.gnss.GnssLocationProvider$$ExternalSyntheticLambda20@9df5f2e
11-11 10:38:22.669 I/sensors-hal( 1368): deactivate:380, disconnect qmi to disable sensor
11-11 10:38:22.669 V/CAE     ( 2218): stop(ContextProvider.java:155)
11-11 10:38:22.669 D/GnssLocationProvider( 2218): stopBatching
11-11 10:38:22.670 I/CAE     ( 2218): sendCmdToSensorHub(SensorHubCommManager.java:156) - -78, 61, 0, 0,
11-11 10:38:22.670 I/sensors-hal( 1368): deactivate:380, disconnect qmi to disable sensor
11-11 10:38:22.670 I/LocSvc_api_v02( 1365): ---> locClientSendReq line 2417 QMI_LOC_STOP_REQ_V02
11-11 10:38:22.671 E/minksocket( 1349): MinkIPC_QRTR_Service: client with node 1 port 44fa went down
11-11 10:38:22.671 E/minksocket( 1349): MinkIPC_QRTR_Service: client with node 1 port 44f5 went down
11-11 10:38:22.672 I/sensors-hal( 1368): activate:437, android.sensor.gyroscope/41 en=0 completed
11-11 10:38:22.672 E/minksocket( 1349): MinkIPC_QRTR_Service: client with node 1 port 44f0 went down
11-11 10:38:22.673 D/SensorService( 2218): setSContextDataLocked ints length 2 , byte length 4
11-11 10:38:22.673 D/SensorService( 2218): setSContextDataLocked 3db2
11-11 10:38:22.673 I/sensors-hal( 1368): inject_sensor_data:547, handle 1501 send inject
11-11 10:38:22.674 I/sensors-hal( 1368): sendContextData:285, sensor hal 4, (0xb2, 0x3d, 0x0, 0x0)
11-11 10:38:22.674 I/sensors-hal( 1368): sendContextData:343, enable:178, handle:23, algo:25362432
11-11 10:38:22.674 I/sensors-hal( 1368): sendContextData:129, change_location_trigger 4,178
11-11 10:38:22.675 E/minksocket( 1349): MinkIPC_QRTR_Service: client with node 1 port 44ff went down
11-11 10:38:22.675 D/qmi_secgps_clnt( 1365): SECGPS: QMI_SECGPS_AGNSS_CONFIG_MESSAGE_IND_V01 received
11-11 10:38:22.676 D/SehGnssExtraCbJni( 2218): serviceAssertMessageCb.
11-11 10:38:22.678 I/sensors-hal( 1368): deactivate:380, disconnect qmi to disable sensor
11-11 10:38:22.679 D/CAE     ( 2218): getFaultDetectionResult(ChLocTriggerRunner.java:161) - true
11-11 10:38:22.680 I/CAE     ( 2218): notifyCmdProcessResultObserver(ContextProvider.java:627) - CheckResult = 0, Cause = Success
11-11 10:38:22.680 D/SensorManager(16769): unregisterListener
11-11 10:38:22.680 V/GnssStatusCallback( 2218): onStopped
11-11 10:38:22.681 D/CAE     ( 2218): doCommendProcess(ContextAwareService.java:400) - complete notify the operation result.
11-11 10:38:22.682 I/CAE     ( 2218): displayUsedCountForService(ContextAwareService.java:464) - totalCnt = 0, serviceCount = 0, subCollectionCount = 0
11-11 10:38:22.682 D/CAE     ( 2218): showListenerList(ContextAwareService.java:329) - ===== Context Aware Service List =====
11-11 10:38:22.682 I/CAE     ( 2218): showListenerList(ContextAwareService.java:338) - Listener : com.samsung.android.contextaware.manager.ContextAwareService$Listener@f59f98b, Service : ACTIVITY_TRACKER_BATCH(1)
11-11 10:38:22.683 I/CAE     ( 2218): showListenerList(ContextAwareService.java:338) - Listener : com.samsung.android.contextaware.manager.ContextAwareService$Listener@f59f98b, Service : SLOCATION_RUNNER(1)
11-11 10:38:22.683 I/CAE     ( 2218): showListenerList(ContextAwareService.java:338) - Listener : com.samsung.android.contextaware.manager.ContextAwareService$Listener@f59f98b, Service : FREE_FALL_DETECTION(1)
11-11 10:38:22.684 W/CAE     ( 2218): unregisterCallback(ContextAwareService.java:255) - [unregi 02] Mutex is unlocked for CH_LOC_TRIGGER
11-11 10:38:22.684 D/SemContextService( 2218):  .unregisterCallback : 4, client= android
11-11 10:38:22.685 D/SemContextService( 2218): unlock : unregisterCallback
11-11 10:38:22.685 D/SemContextManager( 2218):   .unregisterListener : listener = com.android.server.location.nsflp.NSLocationMonitor$5@b3fad00, service=Location Change Trigger
11-11 10:38:22.685 D/NSLocationMonitor( 2218): Success unregisterDeviceActivityDetector
11-11 10:38:22.686 I/OldStopController_FLP( 4252): motionMonitorComplete, remove message
11-11 10:38:22.687 I/OldStopController_FLP( 4252): onCheckGpsStopBySensor, isGpsStopped= false , isStationary =  UNKNOWN , available = true , throttling= false ,isPlugged = true , isMeasurementsMode = false, isAllowedInterval = false , ShouldTrackingApp = false , mDisableController = false
11-11 10:38:22.687 I/SettingManager_FLP( 4252): Location icon is disabled
11-11 10:38:22.688 I/LocFrameworkMonitor_FLP( 4252): setNavigatingFromGlp, stopNavigating
11-11 10:38:22.689 I/LocSvc_ApiV02( 1365): <--- globalEventCb line 282 QMI_LOC_EVENT_ENGINE_STATE_IND_V02
11-11 10:38:22.689 I/LocSvc_api_v02( 1365): ---> locClientSendReq line 2417 QMI_LOC_REG_EVENTS_REQ_V02
11-11 10:38:22.690 I/GnssEngineManager_FLP( 4252): updateEngineEnabled, false / isFromAp=false
11-11 10:38:22.691 I/OldStopController_FLP( 4252): motionMonitorComplete
11-11 10:38:22.691 I/GpsSessionManager_FLP( 4252): closeGnssSession 324590770
11-11 10:38:22.691 I/DataProvider_FLP( 4252): noteResetGps
11-11 10:38:22.692 I/NSLocationMonitor( 2218): noteGpsOp, mode=3 (-1)
11-11 10:38:22.694 I/GpsSession_FLP( 4252): Total distance      : 0.01 km
11-11 10:38:22.694 I/GpsSession_FLP( 4252): Total duration      : 11 seconds
11-11 10:38:22.694 I/GpsSession_FLP( 4252): Total fix duration  : 8 seconds 
11-11 10:38:22.694 I/GpsSession_FLP( 4252): Total lost duration : 0 seconds
11-11 10:38:22.694 I/GpsSession_FLP( 4252): Total lost sections : 1
11-11 10:38:22.694 I/GpsSession_FLP( 4252): Time To First Fix   : 3 seconds
11-11 10:38:22.694 I/SharedPreferences_FLP( 4252): removeExpiredLogs, 0 to 0
11-11 10:38:22.695 I/ShadowRecoveryDetector_FLP( 4252): restored 0 daily summary
11-11 10:38:22.699 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 51, real height = 363
11-11 10:38:22.699 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() height = 0 container Visibility = 8, isValid = false, mIsDozing = false, fraction = 1.0, source = 0, target = 0
11-11 10:38:22.699 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() supplier = 0
11-11 10:38:22.699 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 0, real height = 363
11-11 10:38:22.702 V/QsExpandAnimator( 3099): setQsExpansionPosition 0.0
11-11 10:38:22.703 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 51, real height = 363
11-11 10:38:22.704 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() height = 0 container Visibility = 8, isValid = false, mIsDozing = false, fraction = 1.0, source = 0, target = 0
11-11 10:38:22.704 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() supplier = 0
11-11 10:38:22.704 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 0, real height = 363
11-11 10:38:22.708 D/IndicatorBasicGardener( 3099): PhoneStatusBarViewController is done to update (IndicatorGardenModel) lp:44, lc:1287, cc:504, rc:1209, rp:44, h:51, ctm:false, ctms:0
11-11 10:38:22.709 D/IndicatorBasicGardener( 3099): KeyguardStatusBarViewController is done to update (IndicatorGardenModel) lp:44, lc:1287, cc:504, rc:1333, rp:44, h:51, ctm:false, ctms:0
11-11 10:38:22.732 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 51, real height = 363
11-11 10:38:22.732 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() height = 0 container Visibility = 8, isValid = false, mIsDozing = false, fraction = 1.0, source = 0, target = 0
11-11 10:38:22.732 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() supplier = 0
11-11 10:38:22.732 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 0, real height = 363
11-11 10:38:22.737 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 51, real height = 363
11-11 10:38:22.737 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() height = 0 container Visibility = 8, isValid = false, mIsDozing = false, fraction = 1.0, source = 0, target = 0
11-11 10:38:22.737 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() supplier = 0
11-11 10:38:22.737 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 0, real height = 363
11-11 10:38:23.366 D/MARsPolicyManager( 2218): triggerAction called!
11-11 10:38:23.373 I/NSLocationMonitor( 2218): getGPSUsingApps() called
11-11 10:38:23.389 I/NSLocationManager_FLP( 4252): getGPSUsingApps, NO_FREEZE={5013} / FREEZE={10213, 1010213}
11-11 10:38:23.905 D/io_stats( 1057): !@ Write_top(KB): android.hardwar(1366) 8
11-11 10:38:25.910 D/io_stats( 1057): !@   8,0 r 743744 27133240 w 393458 8927176 d 174029 100473988 f 0 47783 iot 731720 0 th 0 0 0 pt 0 inp 0 0 11453.612
11-11 10:38:26.377 D/NetworkController( 3099): SignalStrength from intent slotId=0
11-11 10:38:26.378 D/MobileSignalController(0/2147483647)( 3099): new mSignalStrength level=4 signal strength=SignalStrength:{mCdma=Invalid,mGsm=Invalid,mWcdma=CellSignalStrengthWcdma: ss=-75 ber=2147483647 rscp=-76 ecno=-4 level=4,mTdscdma=Invalid,mLte=Invalid,mNr=Invalid,SignalBarInfo{ wcdmaLevel=4 },rat=3,primary=CellSignalStrengthWcdma}
11-11 10:38:26.381 D/MobileSignalController(0/2147483647)( 3099): notifyListener: enabled=true, connected=true, dataConnected=false, networkType=UNKNOWN (Unknown), emergencyOnly=true, roaming=false, isDefault=false, dataActivity=, level=4, ca=false, mmWave=false, disabledDataIcon=false, simCard=NO_SIM
11-11 10:38:26.547 D/KeyguardUpdateMonitor( 3099): received broadcast android.intent.action.TIME_TICK
11-11 10:38:26.548 D/KeyguardUpdateMonitor( 3099): handleTimeUpdate
11-11 10:38:26.550 D/FaceWidgetPagesController( 3099): onTimeChanged()
11-11 10:38:26.551 D/FaceWidgetPagesController( 3099): refreshViews() reason = ON_TIME_TICK, force = false
11-11 10:38:26.552 D/FaceWidgetMusicViewModel( 3099): updateMusicPageColorForVisibility
11-11 10:38:26.552 D/FaceWidgetMusicViewModel( 3099): updateMusicPageColorForVisibility, useLightModeColor = false
11-11 10:38:26.552 D/FaceWidgetMusicPage( 3099): mMusicPageTransparencyDataObserver = FaceWidgetMusicPageTransparencyData mMusicPageTransparency = 0.68 mUseLightModeColor = 2 IsUpdatePageColorOnly = true
11-11 10:38:26.553 D/QSClockBellTower( 3099): onReceive(android.intent.action.TIME_TICK) mTimeZoneString:null
11-11 10:38:26.557 D/QSClockBellTower( 3099): He is ready to ring the bell. (((QSClockBellSound - TimeText:10:38, TimeContentDescription:10:38, DateText:Mon, 11 November, ShortDateText:Mon, 11 Nov, Demo:false, QuickStar-Second(false|12:34:56))))
11-11 10:38:26.559 D/QSClockIndicatorView( 3099): Home Indicator status_bar_clock 10:38   Mon, 11 Nov notifyTimeChanged(QSClockBellSound - TimeText:10:38, TimeContentDescription:10:38, DateText:Mon, 11 November, ShortDateText:Mon, 11 Nov, Demo:false, QuickStar-Second(false|12:34:56)) ClockVisibleByPolicy:true, ClockVisibleByUser:true, visible?false, parent:android.widget.LinearLayout{852db9f V.E...... ......I. 0,0-0,51 #7f0b04e7 app:id/left_clock_container}
11-11 10:38:26.559 D/QSClockBellTower( 3099): Everyone heard the bell. run(currentTime:1731317906554,   getTime():Mon Nov 11 10:38:26 GMT+01:00 2024,   getTimeZone():libcore.util.ZoneInfo[mDstSavings=3600000,mUseDst=true,mDelegate=[id="Europe/Amsterdam",mRawOffset=3600000,mEarliestRawOffset=1050000,transitions=185]])
11-11 10:38:26.584 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 51, real height = 363
11-11 10:38:26.584 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() height = 0 container Visibility = 8, isValid = false, mIsDozing = false, fraction = 1.0, source = 0, target = 0
11-11 10:38:26.584 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() supplier = 0
11-11 10:38:26.585 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 0, real height = 363
11-11 10:38:26.590 V/QsExpandAnimator( 3099): setQsExpansionPosition 0.0
11-11 10:38:26.591 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 51, real height = 363
11-11 10:38:26.592 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() height = 0 container Visibility = 8, isValid = false, mIsDozing = false, fraction = 1.0, source = 0, target = 0
11-11 10:38:26.592 I/FaceWidgetPositionAlgorithm( 3099): getMediaContainerHeight() supplier = 0
11-11 10:38:26.592 I/FaceWidgetPositionAlgorithm( 3099): getClockContainerHeight() supplier = 219, bottom margin = 0, real height = 363
11-11 10:38:26.597 V/QsExpandAnimator( 3099): updateAnimators
11-11 10:38:26.598 V/QsExpandAnimator( 3099): clearAnimationState 
11-11 10:38:26.599 V/QsExpandAnimator( 3099): updateViews
11-11 10:38:26.603 V/QsExpandAnimator( 3099): updateTileAnimator
11-11 10:38:26.604 V/QsExpandAnimator( 3099): updateHeaderAnimator
11-11 10:38:26.604 V/QsExpandAnimator( 3099): updateBarAnimator
11-11 10:38:26.605 V/QsExpandAnimator( 3099): setQsExpansionPosition 0.0
11-11 10:38:26.605 V/QsExpandAnimator( 3099): onAnimationAtStart
11-11 10:38:26.617 I/WifiHAL ( 1373): event received NL80211_CMD_VENDOR, vendor_id = 0x1374, subcmd = 0xc9
11-11 10:38:26.626 D/ConnectivityService( 2218): notifyType CALLBACK_CAP_CHANGED for [102 WIFI]
11-11 10:38:26.626 I/wpa_supplicant( 3695): wlan0: WPA: Group rekeying completed with bc:cf:4f:b2:19:e7 [GTK=CCMP]
11-11 10:38:26.629 D/SemWifiSwitchForIndividualAppsService( 2218): stopTCPMonitoring : already stopped
11-11 10:38:26.630 I/WifiConnectivityMonitor.NCC( 2218): sNetworkCallback(oCC) FULL : 102[ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED&NOT_VCN_MANAGED LinkUpBandwidth>=12000Kbps LinkDnBandwidth>=64188Kbps TransportInfo: <SSID: <unknown ssid>, BSSID: 02:00:00:00:00:00, MAC: 02:00:00:00:00:00, IP: /192.168.1.167, Security type: 2, Supplicant state: GROUP_HANDSHAKE, Wi-Fi standard: 5, RSSI: -58, Link speed: 325Mbps, Tx Link speed: 325Mbps, Max Supported Tx Link speed: 866Mbps, Rx Link speed: 585Mbps, Max Supported Rx Link speed: 866Mbps, Frequency: 5540MHz, Net ID: -1, Metered hint: false, score: 60, isUsable: true, CarrierMerged: false, SubscriptionId: -1, IsPrimary: 1, Trusted: true, Restricted: false, Ephemeral: false, OEM paid: false, OEM private: false, OSU AP: false, FQDN: <none>, Provider friendly name: <none>, Requesting package name: <none><none>MLO Information: , AP MLD Address: <none>, AP MLO Link Id: <none>, AP MLO Affiliated links: <none>> SignalStrength: -58 AdminUids: [1000] SSID: "Ramon&Melissa" UnderlyingNetworks: Null]
11-11 10:38:26.630 I/WifiConnectivityMonitor.NCC( 2218): sNetworkCallback(oCC) (true/false)
11-11 10:38:26.632 E/wpa_sslib( 3695): diag_event:31    diag_buf:[11454.317333][EAPOL] GTK M1 [vdev_id=0]
11-11 10:38:26.633 I/wpa_sslib( 3695): Recv DRIVER command: MACADDR
11-11 10:38:26.638 E/wpa_sslib( 3695): diag_event:32    diag_buf:[11454.341260][EAPOL] GTK M2 tx_status=ACK [vdev_id=0]
11-11 10:38:26.640 I/WifiHAL ( 1373): event received NL80211_CMD_VENDOR, vendor_id = 0x1374, subcmd = 0xc9
11-11 10:38:26.641 D/NetworkController.WifiSignalController( 3099): notifyListener: visible=true, connected=true, inetCondition=1, isDefault=true, wifiTestReported=true, receivedInetCondition=-1, hideDuringMobileSwitching=false
11-11 10:38:26.641 I/WifiConnectivityMonitor( 2218): current mode : 1
11-11 10:38:26.641 D/OpenNetworkQos[4.00]( 2218): updateBssidNoInternet: mBssidNoInternet = false
11-11 10:38:26.641 D/OpenNetworkQos[4.00]( 2218): getOpenNetworkQosNoInternetStatus: false
11-11 10:38:26.641 D/OpenNetworkQos[4.00]( 2218): getOpenNetworkQosScores: 0 30 0 
11-11 10:38:26.641 D/SettingsProvider( 2218): isChangeAllowed() : name = wifi_wcm_qos_sharing_score_summary
11-11 10:38:26.642 I/WifiProfileShare( 2218): network QoS data was changed (internet), updateQoSData networkType: true, qosData: false
11-11 10:38:26.642 V/WifiProfileShare.Caster( 2218): update wips network, size: 0
11-11 10:38:26.642 V/WifiProfileShare.Caster( 2218): checkAndGetShareData - device locked
11-11 10:38:26.642 D/WifiProfileShare.Caster( 2218): stop caster
11-11 10:38:26.642 I/[MCFSDK_android_1.2.4010]_4_c( 2218): closeInternal - 
11-11 10:38:26.643 I/[MCFServer]_McfMainController( 4164): destroySubscriber - appId=4 ,SubscribeCallback size:1
11-11 10:38:26.643 E/SemMobileWipsFrameworkService( 2218): unbinded can not send 17
11-11 10:38:26.644 D/[MCFSDK_android_1.2.4010]_McfContext( 2218): closeSubscriber  - c [#0x4, com.samsung.android.mcf.mcfwrapper.SubscriberCallbackWrapper@b19abbe]
11-11 10:38:26.644 I/[MCFSDK_android_1.2.4010]_4_b( 2218): closeInternal - 
11-11 10:38:26.644 D/[MCFSDK_android_1.2.4010]_McfContext( 2218): closeCaster  - b [#0x4, com.samsung.android.mcf.mcfwrapper.CasterCallbackWrapper@87e9dd4]
11-11 10:38:26.644 I/[MCFServer]_McfMainController( 4164): destroyCaster - appId=4 ,CasterCallback size:0
11-11 10:38:26.644 I/[MCFServer]_McfMainController( 4164): destroyCaster - CasterCallbacks is empty, destroyCasterManager after 3s
11-11 10:38:26.646 D/[MCFSDK_android_1.2.4010]_McfContext( 2218): unbind - -
11-11 10:38:26.646 I/[MCFSDK_android_1.2.4010]_McfContext( 2218): releaseInstance - -
11-11 10:38:26.646 D/WifiProfileShare( 2218): unbind mcf service
11-11 10:38:26.647 I/ChimeraSrvcProxy(16769): NullBinder for android.net.action.RECOMMEND_NETWORKS triggering remote TransactionTooLargeException due to Service without Chimera impl
11-11 10:38:26.647 W/.gms.persistent(16769): Large reply transaction of 1056768 bytes, interface descriptor , code 1
11-11 10:38:26.652 I/d       ( 5190): ## Knox E-FOTA ##onCapabilitiesChanged setWifiSsid
11-11 10:38:26.656 D/ConnectivityService( 2218): notifyType CALLBACK_CAP_CHANGED for [102 WIFI]
11-11 10:38:26.656 D/SemWifiSwitchForIndividualAppsService( 2218): stopTCPMonitoring : already stopped
11-11 10:38:26.656 I/HBD     (18853): g onCapabilitiesChanged network : 102 current network state : wifi 
11-11 10:38:26.657 I/WifiConnectivityMonitor.NCC( 2218): sNetworkCallback(oCC) FULL : 102[ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED&NOT_VCN_MANAGED LinkUpBandwidth>=12000Kbps LinkDnBandwidth>=64188Kbps TransportInfo: <SSID: <unknown ssid>, BSSID: 02:00:00:00:00:00, MAC: 02:00:00:00:00:00, IP: /192.168.1.167, Security type: 2, Supplicant state: COMPLETED, Wi-Fi standard: 5, RSSI: -58, Link speed: 325Mbps, Tx Link speed: 325Mbps, Max Supported Tx Link speed: 866Mbps, Rx Link speed: 585Mbps, Max Supported Rx Link speed: 866Mbps, Frequency: 5540MHz, Net ID: -1, Metered hint: false, score: 60, isUsable: true, CarrierMerged: false, SubscriptionId: -1, IsPrimary: 1, Trusted: true, Restricted: false, Ephemeral: false, OEM paid: false, OEM private: false, OSU AP: false, FQDN: <none>, Provider friendly name: <none>, Requesting package name: <none><none>MLO Information: , AP MLD Address: <none>, AP MLO Link Id: <none>, AP MLO Affiliated links: <none>> SignalStrength: -58 AdminUids: [1000] SSID: "Ramon&Melissa" UnderlyingNetworks: Null]
11-11 10:38:26.657 I/WifiConnectivityMonitor.NCC( 2218): sNetworkCallback(oCC) (true/false)
11-11 10:38:26.657 I/WifiConnectivityMonitor( 2218): current mode : 1
11-11 10:38:26.657 D/OpenNetworkQos[4.00]( 2218): updateBssidNoInternet: mBssidNoInternet = false
11-11 10:38:26.657 D/OpenNetworkQos[4.00]( 2218): getOpenNetworkQosNoInternetStatus: false
11-11 10:38:26.657 D/OpenNetworkQos[4.00]( 2218): getOpenNetworkQosScores: 0 30 0 
11-11 10:38:26.658 I/BugleRcsEngine( 2206): handleMessage processing message:[NOTIFY_UPTIME_IGNORE_STATE_CHANGED] with [non-null]:RcsEngineImpl reference [CONTEXT log_prefix="RcsEngineImpl[DUAL_REG]:[3ffeaf9d-fa4c]>Handler" thread_id=1731 ]
11-11 10:38:26.663 D/SettingsProvider( 2218): isChangeAllowed() : name = wifi_wcm_qos_sharing_score_summary
11-11 10:38:26.663 I/WifiProfileShare( 2218): network QoS data was changed (internet), updateQoSData networkType: true, qosData: false
11-11 10:38:26.663 V/WifiProfileShare.Caster( 2218): checkAndGetShareData - device locked
11-11 10:38:26.664 I/d       ( 5190): ## Knox E-FOTA ##onCapabilitiesChanged setWifiSsid
11-11 10:38:26.668 I/ChimeraSrvcProxy(16769): NullBinder for android.net.action.RECOMMEND_NETWORKS triggering remote TransactionTooLargeException due to Service without Chimera impl
11-11 10:38:26.668 W/.gms.persistent(16769): Large reply transaction of 1056768 bytes, interface descriptor , code 1
11-11 10:38:26.669 I/BugleRcsEngine( 2206): Connected state: [1], networkType: [WIFI] [CONTEXT thread_id=1722 ]
11-11 10:38:26.670 E/PhoneInterfaceManager( 3081): [PhoneIntfMgr] getCarrierPrivilegeStatusForUid: Invalid subId
11-11 10:38:26.670 I/HBD     (18853): g onCapabilitiesChanged network : 102 current network state : wifi 
11-11 10:38:26.677 I/BugleRcsEngine( 2206): Connected state: [1], networkType: [WIFI] [CONTEXT thread_id=1722 ]
11-11 10:38:26.681 I/BugleRcsEngine( 2206): No RCS Configuration was found in Bugle for simID: redacted-pii:sim_id[chars:0,last3:] [CONTEXT log_prefix="ProvisioningEngineDataRetriever" thread_id=1731 ]
11-11 10:38:26.682 I/BugleRcsEngine( 2206): handleMessage processing message:[NOTIFY_UPTIME_IGNORE_STATE_CHANGED] with [non-null]:RcsEngineImpl reference [CONTEXT log_prefix="RcsEngineImpl[DUAL_REG]:[3ffeaf9d-fa4c]>Handler" thread_id=1731 ]
11-11 10:38:26.682 E/PhoneInterfaceManager( 3081): [PhoneIntfMgr] getCarrierPrivilegeStatusForUid: Invalid subId
11-11 10:38:26.685 I/BugleRcsEngine( 2206): No RCS Configuration was found in Bugle for simID: redacted-pii:sim_id[chars:0,last3:] [CONTEXT log_prefix="ProvisioningEngineDataRetriever" thread_id=1731 ]
11-11 10:38:26.775 I/HBD     (18853): g onCapabilityChanged  setNetworkState currentNetworkState : wifi 
11-11 10:38:27.913 D/io_stats( 1057): !@   8,0 r 743804 27134440 w 393458 8927176 d 174029 100473988 f 0 47783 iot 731792 0 th 0 0 0 pt 0 inp 0 0 11455.615
11-11 10:38:27.914 D/io_stats( 1057): !@ Read_top(KB): roid.knox.efota(5190) 636 loop44(4343) 384 loop26(1188) 84
11-11 10:38:27.914 D/io_stats( 1057): !@ Write_top(KB): kworker/u16:6(16648) 4
11-11 10:38:29.657 I/[MCFServer]_CasterManager( 4164): stop - 
11-11 10:38:29.658 I/[MCFServer]_SimpleBaseDeviceRepository( 4164): SimpleBaseDeviceRepository - 
11-11 10:38:29.659 I/[MCFServer]_SimpleBaseDeviceRepository( 4164): deleteAll - 
11-11 10:38:29.660 I/[MCFServer]_McfCasterBleBehavior(7D)( 4164): backupDeviceTable - device size = 0
11-11 10:38:29.662 I/[MCFServer]_McfMainController( 4164): updateStandAloneBleMode - isStandAloneBleMode/SubscriberCallbacks.size()/CasterCallbacks.size()/BleAdapterCallbacks.size() = (true/1/0/0)
11-11 10:38:29.918 D/io_stats( 1057): !@   8,0 r 743807 27134516 w 393464 8927524 d 174029 100473988 f 0 47783 iot 731824 0 th 0 0 0 pt 0 inp 0 0 11457.621
11-11 10:38:30.594 I/wpa_supplicant( 3695): Heartbeat 2032
11-11 10:38:31.002 W/ActivityManager( 2218): Invalid packageName: com.companyname.entryhandlermauiissue2
11-11 10:38:31.003 D/ActivityManager( 2218): force stop from com.android.server.am.ActivityManagerService.forceStopPackage:4654 com.android.server.am.ActivityManagerShellCommand.runForceStop:1236 
11-11 10:38:31.003 I/ActivityManager( 2218): Force stopping com.companyname.entryhandlermauiissue2 appid=10340 user=10: from pid 22829
11-11 10:38:31.017 D/CarrierSvcBindHelper( 3081): onHandleForceStop: [com.companyname.entryhandlermauiissue2]
11-11 10:38:31.018 D/CarrierSvcBindHelper( 3081): No carrier app for: 0
11-11 10:38:31.023 W/BroadcastQueue( 2218): Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_RESTARTED dat=package: flg=0x10 (has extras) } to com.airwatch.androidagent/com.airwatch.agent.Receiver
11-11 10:38:31.025 I/WS1_AfwUtils(17269): Hub app user id: 10
11-11 10:38:31.027 I/WS1_Receiver(17269): Received intent: android.intent.action.PACKAGE_RESTARTED
11-11 10:38:31.045 I/WS1_BroadcastIntentService(17269):  : onHandleIntent start broadcast_receiver_delegate_action
11-11 10:38:31.047 I/WS1_BroadcastIntentService(17269):  : onHandleIntent start android.intent.action.PACKAGE_RESTARTED
11-11 10:38:31.059 I/DynDCD  (17269): EnginePayloadProvider.cpp -> Loading Previously stored payload
11-11 10:38:31.064 I/DynDCD  (17269): X509Certificate.cpp -> Leaf SUB: /emailAddress=ws1-SDK-Android@vmware.com/CN=SDK CDD Rules Signer/C=US, Issuer: /CN=AirWatch TLS Trust Issuing Cert
11-11 10:38:31.064 I/DynDCD  (17269): X509Certificate.cpp -> Issuer SUB: /CN=AirWatch TLS Trust Issuing Cert, Issuer: /C=US/O=VMware/OU=EUC Services/OU=Certification Authorities/CN=VMware AirWatch Root CA
11-11 10:38:31.064 E/DynDCD  (17269): X509Certificate.cpp -> verification Error : - unable to get issuer certificate 
11-11 10:38:31.064 E/DynDCD  (17269): X509Certificate.cpp -> Checking for matching Issuer
11-11 10:38:31.065 E/DynDCD  (17269): X509Certificate.cpp -> Able to complete verification: 1
11-11 10:38:31.084 I/DynDCD  (17269): Script -> Starting Dynamic Jail Break Check
11-11 10:38:31.085 I/DynDCD  (17269): Script -> Running Checks
11-11 10:38:31.099 I/SemDvfsHyPerManager( 2218): acquire hyper - APP_LAUNCH/2218@31, type = -999
11-11 10:38:31.099 D/ActivityTaskManager( 2218): startActivityAsUser: callingPid=22839, callingUid=2000, caller=com.android.server.wm.ActivityTaskManagerService.startActivityAsUser:1807 com.android.server.am.ActivityManagerService.startActivityAsUserWithFeature:3673 com.android.server.am.ActivityManagerShellCommand.runStartActivity:656 com.android.server.am.ActivityManagerShellCommand.onCommand:222 com.android.modules.utils.BasicShellCommandHandler.exec:97 android.os.ShellCommand.exec:38 com.android.server.am.ActivityManagerService.onShellCommand:11154 
11-11 10:38:31.100 I/Pageboost( 2218): onAppLaunch : com.companyname.entryhandlermauiissue2
11-11 10:38:31.100 I/Pageboost( 2218): stop alp
11-11 10:38:31.101 I/HYPER-HAL( 1380): [RequestManager.cpp]acquire(): Acquired ID : 2530156  [2218 / 31]    HINT : APP_LAUNCH    list : 
11-11 10:38:31.101 I/ActivityTaskManager( 2218): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.companyname.entryhandlermauiissue2/crc6403f7f3f0dafa2690.MainActivity} from uid 2000
11-11 10:38:31.107 E/pageboostd( 4274): Received HALT command code 2
11-11 10:38:31.110 I/SemDvfsHyPerManager( 5828): acquire hyper - APP_START_SHORT/5828@14, type = -999
11-11 10:38:31.113 I/HYPER-HAL( 1380): [RequestManager.cpp]acquire(): Acquired ID : 17067417  [5828 / 14]    HINT : APP_START    list : [TIMEOUT / 1500] 
11-11 10:38:31.343 E/audit   ( 1262): type=1400 audit(1731317911.336:12081): avc:  denied  { getattr } for  pid=22844 comm="ls" path="/system/etc/cgroups.json" dev="dm-6" ino=1742 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:cgroup_desc_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:31.572 E/audit   ( 1262): type=1400 audit(1731317911.568:12082): avc:  denied  { getattr } for  pid=22844 comm="ls" path="/system/etc/selinux/plat_file_contexts" dev="dm-6" ino=2463 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:file_contexts_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:31.572 E/audit   ( 1262): type=1400 audit(1731317911.568:12083): avc:  denied  { getattr } for  pid=22844 comm="ls" path="/system/etc/selinux/plat_hwservice_contexts" dev="dm-6" ino=2464 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:hwservice_contexts_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:31.573 E/audit   ( 1262): type=1400 audit(1731317911.568:12084): avc:  denied  { getattr } for  pid=22844 comm="ls" path="/system/etc/selinux/plat_keystore2_key_contexts" dev="dm-6" ino=2465 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:keystore2_key_contexts_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:31.573 E/audit   ( 1262): type=1400 audit(1731317911.568:12085): avc:  denied  { getattr } for  pid=22844 comm="ls" path="/system/etc/selinux/plat_mac_permissions.xml" dev="dm-6" ino=2466 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:mac_perms_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:31.816 I/HYPER-HAL( 1380): [RequestManager.cpp]releaseLocked(): Released ID : 2530156
11-11 10:38:31.920 D/io_stats( 1057): !@   8,0 r 743810 27134528 w 393464 8927524 d 174029 100473988 f 0 47783 iot 731836 0 th 0 0 0 pt 0 inp 0 0 11459.623
11-11 10:38:31.920 D/io_stats( 1057): !@ Read_top(KB): droid.mcfserver(4164) 76 ls(22844) 12
11-11 10:38:31.920 D/io_stats( 1057): !@ Write_top(KB): kworker/u16:6(16648) 348
11-11 10:38:32.148 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.206 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.262 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.316 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.372 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.381 E/audit   ( 1262): type=1400 audit(1731317912.376:12101): avc:  denied  { read } for  pid=22844 comm="ls" name="bootstrap" dev="dm-6" ino=4618 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:system_bootstrap_lib_file:s0 tclass=dir permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:32.427 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.482 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.537 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.592 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.616 I/HYPER-HAL( 1380): [RequestManager.cpp]releaseLocked(): Released ID : 17067417
11-11 10:38:32.647 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.702 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.756 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.810 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.866 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.871 I/DynDCD  (17269): Script -> Super User Scan Check : true
11-11 10:38:32.873 I/DynDCD  (17269): Script -> Writable File Paths Check : true
11-11 10:38:32.930 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:32.932 W/ActivityManager( 2218): Permission Denial: runListPackages from pm command asks to run as user 0 but is calling from uid u10a300; this requires android.permission.INTERACT_ACROSS_USERS_FULL
11-11 10:38:32.988 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.023 I/DynDCD  (17269): Script -> Installed Packages Check : true
11-11 10:38:33.048 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.093 E/audit   ( 1262): type=1400 audit(1731317913.088:12102): avc:  denied  { read } for  pid=22861 comm="sh" name="/" dev="dm-6" ino=3 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:rootfs:s0 tclass=dir permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:33.106 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.163 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.219 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.276 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.332 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.390 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.412 E/audit   ( 1262): type=1400 audit(1731317913.404:12103): avc:  denied  { getattr } for  pid=22860 comm="ls" path="/system/etc/cgroups.json" dev="dm-6" ino=1742 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:cgroup_desc_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:33.446 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.502 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.559 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.614 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.619 E/audit   ( 1262): type=1400 audit(1731317913.612:12104): avc:  denied  { getattr } for  pid=22860 comm="ls" path="/system/etc/selinux/plat_file_contexts" dev="dm-6" ino=2463 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:file_contexts_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:33.619 E/audit   ( 1262): type=1400 audit(1731317913.612:12105): avc:  denied  { getattr } for  pid=22860 comm="ls" path="/system/etc/selinux/plat_hwservice_contexts" dev="dm-6" ino=2464 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:hwservice_contexts_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:33.619 E/audit   ( 1262): type=1400 audit(1731317913.612:12106): avc:  denied  { getattr } for  pid=22860 comm="ls" path="/system/etc/selinux/plat_keystore2_key_contexts" dev="dm-6" ino=2465 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:keystore2_key_contexts_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:33.619 E/audit   ( 1262): type=1400 audit(1731317913.612:12107): avc:  denied  { getattr } for  pid=22860 comm="ls" path="/system/etc/selinux/plat_mac_permissions.xml" dev="dm-6" ino=2466 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:mac_perms_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:33.619 E/audit   ( 1262): type=1400 audit(1731317913.612:12108): avc:  denied  { getattr } for  pid=22860 comm="ls" path="/system/etc/selinux/plat_seapp_contexts" dev="dm-6" ino=2468 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:seapp_contexts_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:33.619 E/audit   ( 1262): type=1400 audit(1731317913.612:12109): avc:  denied  { getattr } for  pid=22860 comm="ls" path="/system/etc/selinux/plat_sepolicy.cil" dev="dm-6" ino=2469 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:sepolicy_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:33.619 E/audit   ( 1262): type=1400 audit(1731317913.612:12110): avc:  denied  { getattr } for  pid=22860 comm="ls" path="/system/etc/selinux/plat_service_contexts" dev="dm-6" ino=2471 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:service_contexts_file:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:33.669 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.724 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.779 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.836 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.894 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:33.921 D/io_stats( 1057): !@   8,0 r 743814 27134544 w 393464 8927524 d 174029 100473988 f 0 47783 iot 731860 0 th 0 0 0 pt 0 inp 0 0 11461.624
11-11 10:38:33.952 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.009 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.065 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.121 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.179 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.237 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.293 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.348 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.404 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.460 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.515 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.571 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.625 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.681 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.737 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.792 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.847 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.902 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:34.958 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.013 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.067 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.118 I/DynDCD  (17269): Script -> Super User File Path Check : true
11-11 10:38:35.123 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.178 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.190 I/DynDCD  (17269): Script -> Super User Check : true
11-11 10:38:35.193 I/DynDCD  (17269): Script -> Xposed Check : true
11-11 10:38:35.231 E/audit   ( 1262): type=1400 audit(1731317915.224:12124): avc:  denied  { read } for  pid=22866 comm="ps" name="pid_max" dev="proc" ino=639170 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:proc_pid_max:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:35.236 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.241 I/DynDCD  (17269): Script -> Malicious Files Check : true
11-11 10:38:35.271 I/DynDCD  (17269): Script -> Ro Secure Flag Check : true
11-11 10:38:35.272 E/audit   ( 1262): type=1400 audit(1731317915.268:12125): avc:  denied  { read } for  pid=17269 comm="Q-AirWatchDetec" name="unix" dev="proc" ino=4026532045 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:proc_net:s0 tclass=file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:35.278 D/CompatibilityChangeReporter( 2218): Compat change id reported: 135634846; UID 1099044; state: DISABLED
11-11 10:38:35.278 D/CompatibilityChangeReporter( 2218): Compat change id reported: 177438394; UID 1099044; state: DISABLED
11-11 10:38:35.278 D/CompatibilityChangeReporter( 2218): Compat change id reported: 135772972; UID 1099044; state: DISABLED
11-11 10:38:35.279 D/CompatibilityChangeReporter( 2218): Compat change id reported: 135754954; UID 1099044; state: ENABLED
11-11 10:38:35.280 D/CompatibilityChangeReporter( 2218): Compat change id reported: 143937733; UID 1010300; state: ENABLED
11-11 10:38:35.281 W/Zygote  ( 1303): forkRepeatedly terminated due to non-simple command
11-11 10:38:35.281 D/Zygote  ( 1303): mbuffer starts with 14, nice name is , mEnd = 856, mNext = 35, mLinesLeft = 12, mFd = 6
11-11 10:38:35.284 I/Zygote  ( 1303): Entering forkRepeatedly native zygote loop
11-11 10:38:35.292 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.305 D/Zygote  ( 1303): Forked child process 22874
11-11 10:38:35.307 I/ActivityManager( 2218): Start proc 22874:com.airwatch.androidagent:com.airwatch.core.security.wizard.SystemlessCompService/u10i44 for service {com.airwatch.androidagent/com.airwatch.core.security.wizard.SystemlessCompService}
11-11 10:38:35.339 E/lessCompService(22874): Not starting debugger since process cannot load the jdwp agent.
11-11 10:38:35.345 D/ActivityThread(22874): setConscryptValidator
11-11 10:38:35.345 D/ActivityThread(22874): setConscryptValidator - put
11-11 10:38:35.347 I/ActivityManager( 2218): DSS OFF for com.airwatch.androidagent
11-11 10:38:35.349 I/ActivityManager( 2218): Changes in 1099044 20 to 5, 0 to 8
11-11 10:38:35.353 D/CompatibilityChangeReporter(22874): Compat change id reported: 171979766; UID 1099044; state: ENABLED
11-11 10:38:35.354 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.359 I/servicemanager(  899): network_management is isloated, getService has failed.
11-11 10:38:35.364 D/nativeloader(22874): Configuring classloader-namespace for system apk /system/framework/org.apache.http.legacy.jar. target_sdk_version=34, uses_libraries=ALL, library_path=/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/lib/arm64:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/base.apk!/lib/arm64-v8a:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.arm64_v8a.apk!/lib/arm64-v8a:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.en.apk!/lib/arm64-v8a:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.xhdpi.apk!/lib/arm64-v8a:/system/lib64:/system_ext/lib64, permitted_path=/data:/mnt/expand:/data/user/10/com.airwatch.androidagent:/system/lib64:/system_ext/lib64
11-11 10:38:35.364 D/nativeloader(22874): Extending system_exposed_libraries: libhumantracking.arcsoft.so:libPortraitDistortionCorrection.arcsoft.so:libPortraitDistortionCorrectionCali.arcsoft.so:libface_landmark.arcsoft.so:libFacialStickerEngine.arcsoft.so:libveengine.arcsoft.so:libhybrid_high_dynamic_range.arcsoft.so:libimage_enhancement.arcsoft.so:libFacialAttributeDetection.arcsoft.so:libBeauty_v4.camera.samsung.so:libexifa.camera.samsung.so:libjpega.camera.samsung.so:libOpenCv.camera.samsung.so:libVideoClassifier.camera.samsung.so:libtensorflowLite.dynamic_viewing.camera.samsung.so:libImageScreener.camera.samsung.so:libMyFilter.camera.samsung.so:libtflite2.myfilters.camera.samsung.so:libHIDTSnapJNI.camera.samsung.so:libSmartScan.camera.samsung.so:libRectify.camera.samsung.so:libDocRectifyWrapper.camera.samsung.so:libUltraWideDistortionCorrection.camera.samsung.so:libHpr_RecGAE_cvFeature_v1.0.camera.samsung.so:libHprFace_GAE_api.camera.samsung.so:libFace_Landmark_API.camera.samsung.so:libHprFace_GAE_jni.camera.samsung.so:libFacialBasedSelfieCorr
11-11 10:38:35.369 D/nativeloader(22874): Configuring classloader-namespace for system apk /system_ext/framework/androidx.window.extensions.jar. target_sdk_version=34, uses_libraries=ALL, library_path=/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/lib/arm64:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/base.apk!/lib/arm64-v8a:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.arm64_v8a.apk!/lib/arm64-v8a:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.en.apk!/lib/arm64-v8a:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.xhdpi.apk!/lib/arm64-v8a:/system/lib64:/system_ext/lib64, permitted_path=/data:/mnt/expand:/data/user/10/com.airwatch.androidagent:/system/lib64:/system_ext/lib64
11-11 10:38:35.369 D/nativeloader(22874): Extending system_exposed_libraries: libhumantracking.arcsoft.so:libPortraitDistortionCorrection.arcsoft.so:libPortraitDistortionCorrectionCali.arcsoft.so:libface_landmark.arcsoft.so:libFacialStickerEngine.arcsoft.so:libveengine.arcsoft.so:libhybrid_high_dynamic_range.arcsoft.so:libimage_enhancement.arcsoft.so:libFacialAttributeDetection.arcsoft.so:libBeauty_v4.camera.samsung.so:libexifa.camera.samsung.so:libjpega.camera.samsung.so:libOpenCv.camera.samsung.so:libVideoClassifier.camera.samsung.so:libtensorflowLite.dynamic_viewing.camera.samsung.so:libImageScreener.camera.samsung.so:libMyFilter.camera.samsung.so:libtflite2.myfilters.camera.samsung.so:libHIDTSnapJNI.camera.samsung.so:libSmartScan.camera.samsung.so:libRectify.camera.samsung.so:libDocRectifyWrapper.camera.samsung.so:libUltraWideDistortionCorrection.camera.samsung.so:libHpr_RecGAE_cvFeature_v1.0.camera.samsung.so:libHprFace_GAE_api.camera.samsung.so:libFace_Landmark_API.camera.samsung.so:libHprFace_GAE_jni.camera.samsung.so:libFacialBasedSelfieCorr
11-11 10:38:35.407 W/ziparchive(22874): Unable to open '/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.arm64_v8a.dm': No such file or directory
11-11 10:38:35.408 W/ziparchive(22874): Unable to open '/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.arm64_v8a.dm': No such file or directory
11-11 10:38:35.408 W/lessCompService(22874): Entry not found
11-11 10:38:35.409 W/ziparchive(22874): Unable to open '/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.en.dm': No such file or directory
11-11 10:38:35.409 W/ziparchive(22874): Unable to open '/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.en.dm': No such file or directory
11-11 10:38:35.409 W/lessCompService(22874): Entry not found
11-11 10:38:35.410 W/ziparchive(22874): Unable to open '/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.xhdpi.dm': No such file or directory
11-11 10:38:35.410 W/ziparchive(22874): Unable to open '/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.xhdpi.dm': No such file or directory
11-11 10:38:35.410 W/lessCompService(22874): Entry not found
11-11 10:38:35.411 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.414 D/nativeloader(22874): Configuring classloader-namespace for other apk /data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/base.apk:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.arm64_v8a.apk:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.en.apk:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.xhdpi.apk. target_sdk_version=34, uses_libraries=, library_path=/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/lib/arm64:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/base.apk!/lib/arm64-v8a:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.arm64_v8a.apk!/lib/arm64-v8a:/data/app/~~Li1VjXviTM2r-50xCWnS4Q==/com.airwatch.androidagent-3KnitUByx0c7XMm6tgmQ0w==/split_config.en.apk!/lib/arm64-v8a:/data/app/~~Li1VjXviTM2r-50
11-11 10:38:35.422 I/servicemanager(  899): connectivity is isloated, getService has failed.
11-11 10:38:35.424 D/NetworkSecurityConfig(22874): Using Network Security Config from resource network_security_config debugBuild: false
11-11 10:38:35.432 D/NetworkSecurityConfig(22874): Using Network Security Config from resource network_security_config debugBuild: false
11-11 10:38:35.443 I/MultiDex(22874): VM with version 2.1.0 has multidex support
11-11 10:38:35.443 I/MultiDex(22874): Installing application
11-11 10:38:35.443 I/MultiDex(22874): VM has multidex support, MultiDex support library is disabled.
11-11 10:38:35.444 I/WS1_MessageQueueCrawler(22874): dumpMainThreadEvents trigger component = 114-com.airwatch.core.security.wizard.SystemlessCompService;121;164;
11-11 10:38:35.444 I/WS1_AfwApp(22874): canInitializeApplication = false, reason = Isolated process
11-11 10:38:35.446 I/WS1_AfwApp(22874): canInitializeApplication = false, reason = Isolated process
11-11 10:38:35.453 I/servicemanager(  899): content_capture is isloated, getService has failed.
11-11 10:38:35.459 D/SyslessCompDetector(22874): Total no of path count 0
11-11 10:38:35.461 I/ActivityManager( 2218): Killing 22874:com.airwatch.androidagent:com.airwatch.core.security.wizard.SystemlessCompService/u10a300i44 (adj 0): isolated not needed
11-11 10:38:35.462 I/ActivityManager( 2218): Changes in 1099044 5 to 19, 8 to 0
11-11 10:38:35.462 I/DynDCD  (17269): Script -> Magisk String Check : true
11-11 10:38:35.463 D/DynDCD  (17269): Script -> [{"id":"Rules_SDK_20200505"},{"name":"superUserScan","passed":true},{"name":"writableFilePaths","passed":true},{"name":"installedPackages","passed":true},{"name":"superUserFilePath","passed":true},{"name":"superUser","passed":true},{"name":"xposed","passed":true},{"name":"maliciousFiles","passed":true},{"name":"roSecureFlag","passed":true},{"name":"magisk","passed":true}]
11-11 10:38:35.465 I/DynDCD  (17269): EngineDelegateImpl.cpp -> Compromised detection successfully completed
11-11 10:38:35.466 I/WS1_DynDCD_DynamicCDD(17269): Dynamic compromise detection is a success for rulesId: Rules_SDK_20200505!
11-11 10:38:35.467 E/WS1_DetailsLog(17269): runDynamicCompromiseDetection passed SUCCESS
11-11 10:38:35.467 I/WS1_AirWatchApp(17269): AW SDK, ENABLE_SDK_FRIDA_DETECTION: false , ENABLE_SDK_ROOT_DETECTION: false
11-11 10:38:35.470 I/libprocessgroup( 2218): Successfully killed process cgroup uid 1099044 pid 22874 in 8ms
11-11 10:38:35.470 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.491 I/Zygote  ( 1303): Process 22874 exited due to signal 9 (Killed)
11-11 10:38:35.491 D/BatteryExternalStatsWorker( 2218): update stats : remove-uid (1)
11-11 10:38:35.515 D/BatteryExternalStatsWorker( 2218): Update CPU state
11-11 10:38:35.516 D/BatteryExternalStatsWorker( 2218): mStats lock released
11-11 10:38:35.516 D/BatteryExternalStatsWorker( 2218): done updateExternalStatsLocked
11-11 10:38:35.528 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.585 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.644 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.702 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.759 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.816 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.872 E/BinderTransaction( 2218): Binder proc file not exist.
11-11 10:38:35.873 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.916 E/Watchdog( 2218): !@Sync: 382 heap: 88 / 101 FD: 1020 [2024-11-11 10:38:35.915]
11-11 10:38:35.922 D/io_stats( 1057): !@   8,0 r 743814 27134544 w 393468 8927548 d 174029 100473988 f 0 47783 iot 731868 0 th 0 0 0 pt 0 inp 0 0 11463.625
11-11 10:38:35.922 D/io_stats( 1057): !@ Read_top(KB): ls(22844) 16
11-11 10:38:35.922 D/io_stats( 1057): !@ Write_top(KB): kworker/u16:2(22713) 24
11-11 10:38:35.930 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:35.986 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.045 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.102 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.159 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.216 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.272 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.329 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.386 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.444 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.500 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.563 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.614 D/NetworkController( 3099): SignalStrength from intent slotId=0
11-11 10:38:36.614 D/MobileSignalController(0/2147483647)( 3099): new mSignalStrength level=4 signal strength=SignalStrength:{mCdma=Invalid,mGsm=Invalid,mWcdma=CellSignalStrengthWcdma: ss=-75 ber=2147483647 rscp=-75 ecno=-3 level=4,mTdscdma=Invalid,mLte=Invalid,mNr=Invalid,SignalBarInfo{ wcdmaLevel=4 },rat=3,primary=CellSignalStrengthWcdma}
11-11 10:38:36.617 D/MobileSignalController(0/2147483647)( 3099): notifyListener: enabled=true, connected=true, dataConnected=false, networkType=UNKNOWN (Unknown), emergencyOnly=true, roaming=false, isDefault=false, dataActivity=, level=4, ca=false, mmWave=false, disabledDataIcon=false, simCard=NO_SIM
11-11 10:38:36.635 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.693 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.750 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.768 E/audit   ( 1262): type=1400 audit(1731317916.760:12126): avc:  denied  { read } for  pid=17269 comm="Q-AirWatchDetec" name="sdcard" dev="tmpfs" ino=35 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:mnt_sdcard_file:s0 tclass=lnk_file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:36.768 E/audit   ( 1262): type=1400 audit(1731317916.760:12127): avc:  denied  { read } for  pid=17269 comm="Q-AirWatchDetec" name="sdcard" dev="tmpfs" ino=35 scontext=u:r:untrusted_app:s0:c44,c257,c522,c768 tcontext=u:object_r:mnt_sdcard_file:s0 tclass=lnk_file permissive=0 SEPF_SM-X706B_12_0001 audit_filtered
11-11 10:38:36.807 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.863 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.919 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:36.976 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.013 D/AW_Native(17269): tamper check initiated
11-11 10:38:37.036 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.097 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.162 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.222 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.281 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.342 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.402 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.463 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.523 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.584 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.644 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.705 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.762 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
11-11 10:38:37.819 E/adbd    ( 4421): failed to connect to socket 'tcp:8772': Connection refused
Failed to connect: Failed to establish connection to debugger agent
Process finished with exit code 130.
dellis1972 commented 2 weeks ago

Well there is the problem failed to connect to socket 'tcp:8772': Connection refused. Does the app run after you installed it, if you run it manually from the work profile?

If it does then the problem is the app connecting back to the debugger.

adb logcat > adb.log will not end, which is why I said to wait a bit then press Ctrl+c to exit the process.

ramonB1996 commented 2 weeks ago

The app does run manually indeed, so the probleem seems to be the debugger. Any ideas how to fix that? As this happens only when using the <AndroidDeviceUserId>10</AndroidDeviceUserId> setting. Without it, the app will run fine with the debugger.

Ah okay, I misunderstood the command I see. Here is the file:

adb.log

dellis1972 commented 2 weeks ago

@ramonB1996 I would raise an issue with Rider, as I have no idea how they have implemented the debugger in their IDE.

ramonB1996 commented 2 weeks ago

Okay, I just created the issue at: https://youtrack.jetbrains.com/issue/RIDER-119783/MAUI-Android-debugger-not-working-when-using-AndroidDeviceUserId10-AndroidDeviceUserId

Thank you for your quick answers :)

dellis1972 commented 2 weeks ago

@ramonB1996 cool. It might help the Rider team if you attached the logs you gathered here. It will provide additional context. It might also be useful to add a link to this issue as well.

We shall leave this one open for now, until you hear from the Rider team. Keep us posted 👍