Home
last modified time | relevance | path

Searched refs:HOSTSTOP_RETRIES (Results 1 – 2 of 2) sorted by relevance

/CafeSDK-2.12.13/system/bin/tool/
Dhoststop25 HOSTSTOP_RETRIES=0
63 HOSTSTOP_RETRIES=0
64 while [ $HOSTSTOP_RVAL -ne 0 -a $HOSTSTOP_RETRIES -lt 4 ]
66 if [ $HOSTSTOP_RETRIES -gt 0 ]
68 …: MionButton powerdown failed with err=$HOSTSTOP_RVAL, will retry shortly, count=$HOSTSTOP_RETRIES"
73 ((HOSTSTOP_RETRIES=HOSTSTOP_RETRIES+1))
/CafeSDK-2.12.13/system/src/tool/cafex/
DCafeFunctions.cs42 internal static EnvVar HOSTSTOP_RETRIES = new EnvVar("HOSTSTOP_RETRIES"); field in CafeX.Program
1267 HOSTSTOP_RETRIES.value = "0"; in hoststop()
1435 HOSTSTOP_RETRIES.value = "0"; in hoststop()
1436 … while (HOSTSTOP_RVAL.value != "0" && HexHandler.GetNumberFromString(HOSTSTOP_RETRIES.value) < 4) in hoststop()
1438 if (HexHandler.GetNumberFromString(HOSTSTOP_RETRIES.value) > 0) in hoststop()
1440 … failed with err={0}, will retry shortly, count={1}", HOSTSTOP_RVAL.value, HOSTSTOP_RETRIES.value); in hoststop()
1446HOSTSTOP_RETRIES.value = (HexHandler.GetNumberFromString(HOSTSTOP_RETRIES.value) + 1).ToString(); in hoststop()