/device/soc/rockchip/common/vendor/drivers/staging/android/fiq_debugger/ |
H A D | fiq_debugger_arm64.c | 43 void fiq_debugger_dump_pc(struct fiq_debugger_output *output, const struct pt_regs *regs)
in fiq_debugger_dump_pc() argument 45 output->printf(output, " pc %016lx cpsr %08lx mode %s\n", regs->pc, regs->pstate, mode_name(regs));
in fiq_debugger_dump_pc() 48 void fiq_debugger_dump_regs_aarch32(struct fiq_debugger_output *output, const struct pt_regs *regs)
in fiq_debugger_dump_regs_aarch32() argument 50 output->printf(output, " r0 %08x r1 %08x r2 %08x r3 %08x\n", regs->compat_usr(0), regs->compat_usr(1),
in fiq_debugger_dump_regs_aarch32() 52 output->printf(output, " r4 %08x r5 %08x r6 %08x r7 %08x\n", regs->compat_usr(DEBUGER_INDEX_FO),
in fiq_debugger_dump_regs_aarch32() 55 output->printf(output, " r in fiq_debugger_dump_regs_aarch32() 63 fiq_debugger_dump_regs_aarch64(struct fiq_debugger_output *output, const struct pt_regs *regs) fiq_debugger_dump_regs_aarch64() argument 88 fiq_debugger_dump_regs(struct fiq_debugger_output *output, const struct pt_regs *regs) fiq_debugger_dump_regs() argument 104 fiq_debugger_dump_allregs(struct fiq_debugger_output *output, const struct pt_regs *regs) fiq_debugger_dump_allregs() argument 133 struct fiq_debugger_output *output; global() member 151 fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output, const struct pt_regs *regs, unsigned int depth, void *ssp) fiq_debugger_dump_stacktrace() argument [all...] |
H A D | fiq_debugger_arm.c | 45 void fiq_debugger_dump_pc(struct fiq_debugger_output *output, const struct pt_regs *regs)
in fiq_debugger_dump_pc() argument 47 output->printf(output, " pc %08x cpsr %08x mode %s\n", regs->ARM_pc, regs->ARM_cpsr, mode_name(regs->ARM_cpsr));
in fiq_debugger_dump_pc() 50 void fiq_debugger_dump_regs(struct fiq_debugger_output *output, const struct pt_regs *regs)
in fiq_debugger_dump_regs() argument 52 output->printf(output, " r0 %08x r1 %08x r2 %08x r3 %08x\n", regs->ARM_r0, regs->ARM_r1, regs->ARM_r2,
in fiq_debugger_dump_regs() 54 output->printf(output, " r4 %08x r5 %08x r6 %08x r7 %08x\n", regs->ARM_r4, regs->ARM_r5, regs->ARM_r6,
in fiq_debugger_dump_regs() 56 output->printf(output, " r in fiq_debugger_dump_regs() 143 fiq_debugger_dump_allregs(struct fiq_debugger_output *output, const struct pt_regs *regs) fiq_debugger_dump_allregs() argument 166 struct fiq_debugger_output *output; global() member 192 user_backtrace(struct fiq_debugger_output *output, struct frame_tail *tail) user_backtrace() argument 217 fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output, const struct pt_regs *regs, unsigned int depth, void *ssp) fiq_debugger_dump_stacktrace() argument [all...] |
H A D | fiq_debugger_priv.h | 55 void (*printf)(struct fiq_debugger_output *output, const char *fmt, ...); 60 void fiq_debugger_dump_pc(struct fiq_debugger_output *output, const struct pt_regs *regs); 61 void fiq_debugger_dump_regs(struct fiq_debugger_output *output, const struct pt_regs *regs); 62 void fiq_debugger_dump_allregs(struct fiq_debugger_output *output, const struct pt_regs *regs); 63 void fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output, const struct pt_regs *regs, unsigned int depth,
|
H A D | fiq_debugger.c | 76 struct fiq_debugger_output output;
member 294 __printf(2, 3) static void fiq_debugger_printf(struct fiq_debugger_output *output, const char *fmt, ...)
in fiq_debugger_printf() argument 300 state = container_of(output, struct fiq_debugger_state, output);
in fiq_debugger_printf() 333 fiq_debugger_printf(&state->output, "irqnr total since-last status name\n");
in fiq_debugger_dump_irqs() 340 fiq_debugger_printf(&state->output, "%5d: %10u %11u %8x %s\n", n, kstat_irqs(n),
in fiq_debugger_dump_irqs() 356 fiq_debugger_printf(&state->output, "pid ppid prio task pc\n");
in fiq_debugger_do_ps() 361 fiq_debugger_printf(&state->output, "%5d %5d %4d ", p->pid, p->parent->pid, p->prio);
in fiq_debugger_do_ps() 362 fiq_debugger_printf(&state->output, "%-13.13s %c", p->comm,
in fiq_debugger_do_ps() 365 fiq_debugger_printf(&state->output, " runnin in fiq_debugger_do_ps() [all...] |
/device/soc/rockchip/rk3588/kernel/drivers/staging/android/fiq_debugger/ |
H A D | fiq_debugger_arm64.c | 37 void fiq_debugger_dump_pc(struct fiq_debugger_output *output, in fiq_debugger_dump_pc() argument 40 output->printf(output, " pc %016lx cpsr %08lx mode %s\n", in fiq_debugger_dump_pc() 44 void fiq_debugger_dump_regs_aarch32(struct fiq_debugger_output *output, in fiq_debugger_dump_regs_aarch32() argument 47 output->printf(output, " r0 %08x r1 %08x r2 %08x r3 %08x\n", in fiq_debugger_dump_regs_aarch32() 50 output->printf(output, " r4 %08x r5 %08x r6 %08x r7 %08x\n", in fiq_debugger_dump_regs_aarch32() 53 output->printf(output, " r in fiq_debugger_dump_regs_aarch32() 63 fiq_debugger_dump_regs_aarch64(struct fiq_debugger_output *output, const struct pt_regs *regs) fiq_debugger_dump_regs_aarch64() argument 103 fiq_debugger_dump_regs(struct fiq_debugger_output *output, const struct pt_regs *regs) fiq_debugger_dump_regs() argument 118 fiq_debugger_dump_allregs(struct fiq_debugger_output *output, const struct pt_regs *regs) fiq_debugger_dump_allregs() argument 157 struct fiq_debugger_output *output; global() member 175 fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output, const struct pt_regs *regs, unsigned int depth, void *ssp) fiq_debugger_dump_stacktrace() argument [all...] |
H A D | fiq_debugger_priv.h | 25 void (*printf)(struct fiq_debugger_output *output, const char *fmt, ...); 30 void fiq_debugger_dump_pc(struct fiq_debugger_output *output, 32 void fiq_debugger_dump_regs(struct fiq_debugger_output *output, 34 void fiq_debugger_dump_allregs(struct fiq_debugger_output *output, 36 void fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output,
|
H A D | fiq_debugger.c | 76 struct fiq_debugger_output output; member 279 static void fiq_debugger_printf(struct fiq_debugger_output *output, in fiq_debugger_printf() argument 286 state = container_of(output, struct fiq_debugger_state, output); in fiq_debugger_printf() 320 fiq_debugger_printf(&state->output, in fiq_debugger_dump_irqs() 326 fiq_debugger_printf(&state->output, "%5d: %10u %11u %8x %s\n", n, in fiq_debugger_dump_irqs() 344 fiq_debugger_printf(&state->output, "pid ppid prio task pc\n"); in fiq_debugger_do_ps() 348 fiq_debugger_printf(&state->output, in fiq_debugger_do_ps() 350 fiq_debugger_printf(&state->output, "%-13.13s %c", p->comm, in fiq_debugger_do_ps() 353 fiq_debugger_printf(&state->output, " runnin in fiq_debugger_do_ps() [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/mbedtls/include/mbedtls/ |
H A D | aes.h | 254 * \param output The buffer where the output data will be written. 262 unsigned char output[16] ); 299 * \param output The buffer holding the output data. 311 unsigned char *output ); 341 * \param output The buffer holding the output data (which is an entire 343 * output. 355 unsigned char *output ); [all...] |
H A D | entropy_poll.h | 54 unsigned char *output, size_t len, size_t *olen ); 62 unsigned char *output, size_t len, size_t *olen ); 72 unsigned char *output, size_t len, size_t *olen ); 80 unsigned char *output, size_t len, size_t *olen ); 93 unsigned char *output, size_t len, size_t *olen ); 103 unsigned char *output, size_t len, size_t *olen );
|
H A D | cipher_internal.h | 51 const unsigned char *input, unsigned char *output ); 57 unsigned char *output ); 64 unsigned char *output ); 72 unsigned char *output ); 79 const unsigned char *input, unsigned char *output ); 86 const unsigned char *input, unsigned char *output ); 92 const unsigned char *input, unsigned char *output );
|
H A D | md.h | 233 * \return The size of the message-digest output in Bytes. 294 * and writes the result to the output buffer. 304 * \param output The buffer for the generic message-digest checksum result. 310 int mbedtls_md_finish( mbedtls_md_context_t *ctx, unsigned char *output ); 324 * \param output The generic message-digest checksum result. 331 unsigned char *output ); 344 * \param output The generic message-digest checksum result. 352 unsigned char *output ); 400 * the result to the output buffer. 410 * \param output Th [all...] |
H A D | aria.h | 160 * \param output The 16-Byte buffer holding the output data. 167 unsigned char output[MBEDTLS_ARIA_BLOCKSIZE] ); 205 * \param output The buffer holding the output data. This must 216 unsigned char *output ); 255 * \param output The buffer holding the output data. This must 267 unsigned char *output ); 342 * \param output Th [all...] |
H A D | blowfish.h | 121 * \param output The output block. This must be a writable buffer 130 unsigned char output[MBEDTLS_BLOWFISH_BLOCKSIZE] ); 155 * \param output The output data. This must be a writable buffer of length 166 unsigned char *output ); 195 * \param output The output data. This must be a writable buffer of length 207 unsigned char *output ); 268 * \param output Th [all...] |
H A D | camellia.h | 132 * \param output The output block. This must be a writable buffer 141 unsigned char output[16] ); 166 * \param output The buffer holding the output data. This must point to a 177 unsigned char *output ); 212 * \param output The buffer to hold the output data. This must be a writable 224 unsigned char *output ); 296 * \param output Th [all...] |
H A D | ccm.h | 128 * the \p tag with the \p output, as done in <em>RFC-3610: 130 * \p tag = \p output + \p length, and make sure that the 131 * output buffer is at least \p length + \p tag_len wide. 149 * \param output The buffer holding the output data. If \p length is greater 150 * than zero, \p output must be a writable buffer of at least 163 const unsigned char *input, unsigned char *output, 170 * the \p tag with the \p output, as done in <em>RFC-3610: 172 * \p tag = \p output + \p length, and make sure that the 173 * output buffe [all...] |
H A D | md5.h | 145 * \param output MD5 checksum result 155 unsigned char output[16] ); 217 * \param output MD5 checksum result 225 unsigned char output[16] ); 251 * \param output MD5 checksum result 262 unsigned char output[16] ); 277 * \param output MD5 checksum result 286 unsigned char output[16] );
|
H A D | md4.h | 145 * \param output MD4 checksum result 155 unsigned char output[16] ); 217 * \param output MD4 checksum result 225 unsigned char output[16] ); 251 * \param output MD4 checksum result 262 unsigned char output[16] ); 277 * \param output MD4 checksum result 286 unsigned char output[16] );
|
H A D | md2.h | 146 * \param output MD2 checksum result 156 unsigned char output[16] ); 216 * \param output MD2 checksum result 224 unsigned char output[16] ); 248 * \param output MD2 checksum result 257 unsigned char output[16] ); 272 * \param output MD2 checksum result 281 unsigned char output[16] );
|
H A D | sha1.h | 155 * the result to the output buffer. 163 * \param output The SHA-1 checksum result. This must be a writable 170 unsigned char output[20] ); 233 * the result to the output buffer. 243 * \param output The SHA-1 checksum result. 247 unsigned char output[20] ); 276 * output = SHA-1(input buffer). 285 * \param output The SHA-1 checksum result. 294 unsigned char output[20] ); 309 * output [all...] |
H A D | ripemd160.h | 112 * \param output RIPEMD-160 checksum result 117 unsigned char output[20] ); 166 * \param output RIPEMD-160 checksum result 170 unsigned char output[20] ); 192 * \param output RIPEMD-160 checksum result 198 unsigned char output[20] ); 213 * \param output RIPEMD-160 checksum result 217 unsigned char output[20] );
|
/device/soc/rockchip/rk3588/kernel/scripts/ |
H A D | mkbootimg | 70 args.output.write(pack('8s', BOOT_MAGIC)) 71 args.output.write(pack( 78 args.output.write(pack('4I', 0, 0, 0, 0)) # reserved 80 args.output.write(pack('I', args.header_version)) # version of bootimage header 81 args.output.write(pack('1536s', args.cmdline.encode())) 82 pad_file(args.output, BOOT_IMAGE_HEADER_V3_PAGESIZE) 116 args.output.write(pack('8s', BOOT_MAGIC)) 119 args.output.write(pack( 131 args.output.write(pack('16s', args.board.encode())) # asciiz product name 132 args.output [all...] |
/device/soc/rockchip/common/vendor/drivers/rockchip/ |
H A D | rockchip_debug.c | 81 static int rockchip_debug_dump_edpcsr(struct fiq_debugger_output *output)
in rockchip_debug_dump_edpcsr() argument 102 output->printf(output, "CPU%d online:%d\n", i, cpu_online(i));
in rockchip_debug_dump_edpcsr() 116 output->printf(output, "\tPC: <0x%px> %pS\n", pc, pc);
in rockchip_debug_dump_edpcsr() 122 output->printf(output, "\n");
in rockchip_debug_dump_edpcsr() 131 static int rockchip_debug_dump_pmpcsr(struct fiq_debugger_output *output)
in rockchip_debug_dump_pmpcsr() argument 143 output->printf(output, "CP in rockchip_debug_dump_pmpcsr() 179 rockchip_debug_dump_pmpcsr(struct fiq_debugger_output *output) rockchip_debug_dump_pmpcsr() argument 185 rockchip_debug_dump_pcsr(struct fiq_debugger_output *output) rockchip_debug_dump_pcsr() argument [all...] |
/device/soc/rockchip/rk3588/kernel/drivers/soc/rockchip/ |
H A D | rockchip_debug.c | 81 static int rockchip_debug_dump_edpcsr(struct fiq_debugger_output *output) in rockchip_debug_dump_edpcsr() argument 103 output->printf(output, in rockchip_debug_dump_edpcsr() 119 output->printf(output, in rockchip_debug_dump_edpcsr() 126 output->printf(output, "\n"); in rockchip_debug_dump_edpcsr() 135 static int rockchip_debug_dump_pmpcsr(struct fiq_debugger_output *output) in rockchip_debug_dump_pmpcsr() argument 147 output->printf(output, in rockchip_debug_dump_pmpcsr() 185 rockchip_debug_dump_pmpcsr(struct fiq_debugger_output *output) rockchip_debug_dump_pmpcsr() argument 192 rockchip_debug_dump_pcsr(struct fiq_debugger_output *output) rockchip_debug_dump_pcsr() argument [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/components/at/src/ |
H A D | at_parse.c | 29 hi_char *output = (hi_char *)NULL; in at_param_shift() local 39 output = (hi_char *)hi_malloc(HI_MOD_ID_SAL_DFX, len); in at_param_shift() 40 if (output == NULL) { in at_param_shift() 44 /* Backup the 'output' start address */ in at_param_shift() 45 out_bak = output; in at_param_shift() 51 *output = *cmd_in; in at_param_shift() 52 output++; in at_param_shift() 54 *output = '\0'; in at_param_shift() 56 output = out_bak; in at_param_shift() 57 len = strlen(output); in at_param_shift() [all...] |
/device/soc/rockchip/common/sdk_linux/scripts/ |
H A D | repack-bootimg | 21 -o OUTPUT, --output OUTPUT 22 output file name 70 output=$2 73 --output) 74 output=$2 89 if [ "$output" == "" ]; then 90 echo "No output file name" 153 --output $output
|