Home
last modified time | relevance | path

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

/external/vboot_reference/utility/
Dtlcl_generator.c85 Command* newCommand(TPM_COMMAND_CODE code, int size) { in newCommand() function
132 Command* cmd = newCommand(TPM_ORD_NV_DefineSpace, size); in BuildDefineSpaceCommand()
155 Command* cmd = newCommand(TPM_ORD_NV_WriteValue, 0); in BuildWriteCommand()
166 Command* cmd = newCommand(TPM_ORD_NV_ReadValue, size); in BuildReadCommand()
175 Command* cmd = newCommand(TPM_ORD_PcrRead, size); in BuildPCRReadCommand()
183 Command* cmd = newCommand(TSC_ORD_PhysicalPresence, size); in BuildPPAssertCommand()
193 Command* cmd = newCommand(TSC_ORD_PhysicalPresence, size); in BuildPPEnableCommand()
203 Command* cmd = newCommand(TSC_ORD_PhysicalPresence, size); in BuildFinalizePPCommand()
215 Command* cmd = newCommand(TSC_ORD_PhysicalPresence, size); in BuildPPLockCommand()
225 Command* cmd = newCommand(TPM_ORD_Startup, size); in BuildStartupCommand()
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
DVarOptimizer.java319 private static boolean isSameEscaper(AEscapeCommand newCommand, AEscapeCommand oldCommand) { in isSameEscaper() argument
320 if (newCommand == null || oldCommand == null) { in isSameEscaper()
323 return simpleNameOf(newCommand).equals(simpleNameOf(oldCommand)); in isSameEscaper()