#line 526:528 # Now we can start zygote.triggerzygote-start
#line 1087:1095# to start-zygote in device's init.rc to unblock zygote start.onzygote-start
wait_for_propodsign.verification.done1# A/B update verifier that marks a successful boot.exec_startupdate_verifier
startstatsd
startzygote
startzygote_secondary
servicezygote/system/bin/app_process-Xzygote/system/bin--zygote--start-system-server
classmain
priority-20
userroot
grouprootreadprocreserved_disk
socketzygotestream660rootsystem
socketusap_pool_primarystream660rootsystem
onrestartexec_background-systemsystem--/system/bin/vdcvolumeabort_fuse
onrestartwrite/sys/power/stateon
# NOTE: If the wakelock name here is changed, then also# update it in SystemSuspend.cpponrestartwrite/sys/power/wake_lockzygote_kwl
onrestartrestartaudioserver
onrestartrestartcameraserver
onrestartrestartmedia
onrestartrestart--only-if-runningmedia.tuner
onrestartrestartnetd
onrestartrestartwificond
task_profilesProcessCapacityHighMaxPerformance
criticalwindow=${zygote.critical_window.minute:-off}target=zygote-fatal
servicezygote/system/bin/app_process64-Xzygote/system/bin--zygote--start-system-server--socket-name=zygote
classmain
priority-20
userroot
grouprootreadprocreserved_disk
socketzygotestream660rootsystem
socketusap_pool_primarystream660rootsystem
onrestartexec_background-systemsystem--/system/bin/vdcvolumeabort_fuse
onrestartwrite/sys/power/stateon
# NOTE: If the wakelock name here is changed, then also# update it in SystemSuspend.cpponrestartwrite/sys/power/wake_lockzygote_kwl
onrestartrestartaudioserver
onrestartrestartcameraserver
onrestartrestartmedia
onrestartrestart--only-if-runningmedia.tuner
onrestartrestartnetd
onrestartrestartwificond
task_profilesProcessCapacityHighMaxPerformance
criticalwindow=${zygote.critical_window.minute:-off}target=zygote-fatal
//line 263:282++i;// Skip unused "parent dir" argument.while(i<argc){constchar*arg=argv[i++];if(strcmp(arg,"--zygote")==0){zygote=true;niceName=ZYGOTE_NICE_NAME;}elseif(strcmp(arg,"--start-system-server")==0){startSystemServer=true;}elseif(strcmp(arg,"--application")==0){application=true;}elseif(strncmp(arg,"--nice-name=",12)==0){niceName=(arg+12);}elseif(strncmp(arg,"--",2)!=0){className=arg;break;}else{--i;break;}}//line 309:311if(startSystemServer){args.add(String8("start-system-server"));}//line 335:343if(zygote){runtime.start("com.android.internal.os.ZygoteInit",args,zygote);}elseif(!className.empty()){runtime.start("com.android.internal.os.RuntimeInit",args,zygote);}else{fprintf(stderr,"Error: no class name or --zygote supplied.\n");app_usage();LOG_ALWAYS_FATAL("app_process: no class name or --zygote supplied.");}