Home
last modified time | relevance | path

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

/openbmc/qemu/linux-user/
H A Dloader.h67 #define BPRM_BUF_SIZE 1024 macro
74 char buf[BPRM_BUF_SIZE] __attribute__((aligned));
H A Dlinuxload.c72 retval = read(bprm->src.fd, bprm->buf, BPRM_BUF_SIZE); in prepare_binprm()
77 if (retval < BPRM_BUF_SIZE) { in prepare_binprm()
79 memset(bprm->buf + retval, 0, BPRM_BUF_SIZE - retval); in prepare_binprm()
H A Delfload.c3516 char bprm_buf[BPRM_BUF_SIZE]) in load_elf_interp() argument
3530 retval = read(fd, bprm_buf, BPRM_BUF_SIZE); in load_elf_interp()