Searched refs:DUMP_WRITE (Results 1 – 4 of 4) sorted by relevance
/linux-3.4.99/fs/proc/ |
D | kcore.c | 293 #define DUMP_WRITE(addr,nr) do { memcpy(bufp,addr,nr); bufp += nr; } while(0) in storenote() macro 299 DUMP_WRITE(&en, sizeof(en)); in storenote() 300 DUMP_WRITE(men->name, en.n_namesz); in storenote() 304 DUMP_WRITE(men->data, men->datasz); in storenote() 307 #undef DUMP_WRITE in storenote()
|
/linux-3.4.99/arch/x86/ia32/ |
D | ia32_aout.c | 133 #define DUMP_WRITE(addr, nr) \ macro 194 DUMP_WRITE(&dump, sizeof(dump)); in aout_core_dump() 203 DUMP_WRITE(dump_start, dump_size); in aout_core_dump() 209 DUMP_WRITE(dump_start, dump_size); in aout_core_dump()
|
/linux-3.4.99/fs/ |
D | binfmt_elf_fdpic.c | 1274 #define DUMP_WRITE(addr, nr, foffset) \ macro 1280 DUMP_WRITE(buf, roundup(*foffset, 4) - *foffset, foffset); in alignfile() 1292 DUMP_WRITE(&en, sizeof(en), foffset); in writenote() 1293 DUMP_WRITE(men->name, en.n_namesz, foffset); in writenote() 1296 DUMP_WRITE(men->data, men->datasz, foffset); in writenote() 1302 #undef DUMP_WRITE
|
D | binfmt_elf.c | 1214 #define DUMP_WRITE(addr, nr, foffset) \ macro 1220 DUMP_WRITE(buf, roundup(*foffset, 4) - *foffset, foffset); in alignfile() 1232 DUMP_WRITE(&en, sizeof(en), foffset); in writenote() 1233 DUMP_WRITE(men->name, en.n_namesz, foffset); in writenote() 1236 DUMP_WRITE(men->data, men->datasz, foffset); in writenote() 1242 #undef DUMP_WRITE
|