Home
last modified time | relevance | path

Searched refs:DEBUG_FLAGS (Results 1 – 3 of 3) sorted by relevance

/CafeSDK-2.12.13-1/system/bin/tool/
Dcafeheadlessrun38 DEBUG_FLAGS=
145 echo "$(basename $0): calling cafediscrun -e em -e sata $DEBUG_FLAGS $RPX_PATH $RPX_ARGS"
146 cafediscrun -e em -e sata $DEBUG_FLAGS $RPX_PATH $RPX_ARGS
205 echo "$(basename $0): calling cafediscrun $DEBUG_FLAGS -e h:$UPLOAD_BANK -e nopcfs $RPX_PATH"
206 cafediscrun $DEBUG_FLAGS -e h:$UPLOAD_BANK -e nopcfs $RPX_PATH
Dcaferun120 DEBUG_FLAGS=0
123 DEBUG_FLAGS=16
128 DEBUG_FLAGS=32
133 DEBUG_FLAGS=64
137 DEBUG_FLAGS=$(($DEBUG_FLAGS | 256))
902 DEBUG_FLAGS=$(($((DEBUG_FLAGS & ~0xf)) | $((DEBUG_PROC_ID & 0xf))))
905 DEBUG_FLAGS=$(($DEBUG_FLAGS | $((DEBUG_PROC_ID & 0xf))))
915 i ) DEBUG_FLAGS=$(($DEBUG_FLAGS | 16));; # stop in init code
916 R ) DEBUG_FLAGS=$(($DEBUG_FLAGS | 32));; # don't stop in main code
917 j ) DEBUG_FLAGS=$(($DEBUG_FLAGS | 64));; # stop in pre-init code
[all …]
/CafeSDK-2.12.13-1/system/src/tool/cafex/
DCafeFunctions.cs122 internal static EnvVar DEBUG_FLAGS = new EnvVar("DEBUG_FLAGS"); field in CafeX.Program
2091 DEBUG_FLAGS.value = "0"; in run()
2095 DEBUG_FLAGS.value = "16"; in run()
2100 DEBUG_FLAGS.value = "32"; in run()
2105 DEBUG_FLAGS.value = "64"; in run()
2110 UInt32 dbgFlags = HexHandler.GetNumberFromString(DEBUG_FLAGS.value) | 256; in run()
2111 DEBUG_FLAGS.value = dbgFlags.ToString(); in run()
2254 uint debug_flags = HexHandler.GetNumberFromString(DEBUG_FLAGS.value); in run()
2259 DEBUG_FLAGS.value = new_value.ToString(); in run()
2274 uint debug_flags = HexHandler.GetNumberFromString(DEBUG_FLAGS.value); in run()
[all …]