• Home
  • Raw
  • Download

Lines Matching defs:handle

22 char *BShellEnvErrString(BShellHandle handle, int32_t err)  in BShellEnvErrString()
48 static void BShellCmdOutputCmdHelp(BShellHandle handle, BShellCommand *cmd) in BShellCmdOutputCmdHelp()
62 int32_t BShellCmdHelp(BShellHandle handle, int32_t argc, char *argv[]) in BShellCmdHelp()
90 static int32_t BShellCmdExit(BShellHandle handle, int32_t argc, char *argv[]) in BShellCmdExit()
98 int32_t BShellEnvOutput(BShellHandle handle, char *fmt, ...) in BShellEnvOutput()
109 int32_t BShellEnvOutputString(BShellHandle handle, const char *string) in BShellEnvOutputString()
117 int32_t BShellEnvOutputPrompt(BShellHandle handle, const char *prompt) in BShellEnvOutputPrompt()
139 void BShellEnvOutputByte(BShellHandle handle, char data) in BShellEnvOutputByte()
146 void BShellEnvOutputResult(BShellHandle handle, int32_t result) in BShellEnvOutputResult()
155 static void BShellEnvOutputParam(BShellHandle handle, char *var) in BShellEnvOutputParam()
162 void BShellEnvBackspace(BShellHandle handle, uint32_t length) in BShellEnvBackspace()
200 static int32_t BShellEnvHandleEnter(BShellHandle handle, uint8_t data) in BShellEnvHandleEnter()
242 static int32_t BShellEnvHandleBackspace(BShellHandle handle, uint8_t code) in BShellEnvHandleBackspace()
273 static int32_t BShellEnvHandleTab(BShellHandle handle, uint8_t code) in BShellEnvHandleTab()
279 static void BShellEnvHandleNormal(BShellHandle handle, uint8_t data) in BShellEnvHandleNormal()
312 static int32_t BShellEnvHandleCtrC(BShellHandle handle, uint8_t code) in BShellEnvHandleCtrC()
322 static int32_t BShellEnvHandleEsc(BShellHandle handle, uint8_t code) in BShellEnvHandleEsc()
349 SHELLSTATIC void BShellEnvProcessInput(BShellHandle handle, char data) in BShellEnvProcessInput()
396 void BShellEnvLoop(BShellHandle handle) in BShellEnvLoop()
409 int32_t BShellEnvInit(BShellHandle *handle, const BShellInfo *info) in BShellEnvInit()
429 int BShellEnvStart(BShellHandle handle) in BShellEnvStart()
475 void BShellEnvDestory(BShellHandle handle) in BShellEnvDestory()
506 int32_t BShellEnvRegisterCmd(BShellHandle handle, const CmdInfo *cmdInfo) in BShellEnvRegisterCmd()
571 BShellCommand *BShellEnvGetCmd(BShellHandle handle, int32_t argc, char *argv[]) in BShellEnvGetCmd()
613 int32_t BShellEnvRegisterKeyHandle(BShellHandle handle, uint8_t code, BShellkeyHandle keyHandle) in BShellEnvRegisterKeyHandle()
628 BShellKey *BShellEnvGetKey(BShellHandle handle, uint8_t code) in BShellEnvGetKey()
660 int32_t BShellEnvSetParam(BShellHandle handle, const char *name, const char *desc, BShellParamType … in BShellEnvSetParam()
696 const BShellParam *BShellEnvGetParam(BShellHandle handle, const char *name) in BShellEnvGetParam()
710 const char *BShellEnvGetStringParam(BShellHandle handle, const char *name) in BShellEnvGetStringParam()
726 const ParamInfo *BShellEnvGetReservedParam(BShellHandle handle, const char *name) in BShellEnvGetReservedParam()
740 int32_t BShellEnvDirectExecute(BShellHandle handle, int argc, char *args[]) in BShellEnvDirectExecute()