Searched refs:dump (Results 1 - 25 of 65) sorted by relevance

123

/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/m68k/kernel/
H A Dprocess.c251 /* Fill in the fpu structure for a core dump. */
271 /* First dump the fpu context to avoid protocol violation. */
286 * fill in the user structure for a core dump..
288 void dump_thread(struct pt_regs * regs, struct user * dump) argument
293 dump->magic = CMAGIC;
294 dump->start_code = 0;
295 dump->start_stack = rdusp() & ~(PAGE_SIZE - 1);
296 dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT;
297 dump->u_dsize = ((unsigned long) (current->mm->brk +
299 dump
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/alpha/kernel/
H A Dprocess.c337 * fill in the user structure for a core dump..
340 dump_thread(struct pt_regs * pt, struct user * dump) argument
345 dump->magic = CMAGIC;
346 dump->start_code = current->mm->start_code;
347 dump->start_data = current->mm->start_data;
348 dump->start_stack = rdusp() & ~(PAGE_SIZE - 1);
349 dump->u_tsize = ((current->mm->end_code - dump->start_code)
351 dump->u_dsize = ((current->mm->brk + PAGE_SIZE-1 - dump
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/arm/kernel/
H A Dprocess.c323 * fill in the fpe structure for a core dump...
334 * fill in the user structure for a core dump..
336 void dump_thread(struct pt_regs * regs, struct user * dump) argument
340 dump->magic = CMAGIC;
341 dump->start_code = tsk->mm->start_code;
342 dump->start_stack = regs->ARM_sp & ~(PAGE_SIZE - 1);
344 dump->u_tsize = (tsk->mm->end_code - tsk->mm->start_code) >> PAGE_SHIFT;
345 dump->u_dsize = (tsk->mm->brk - tsk->mm->start_data + PAGE_SIZE - 1) >> PAGE_SHIFT;
346 dump->u_ssize = 0;
348 dump
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/
H A Dbinfmt_aout.c72 * Routine writes a core dump image in the current directory.
75 * Note that setuid/setgid files won't make a core-dump if the uid/gid
86 struct user dump; local
106 strncpy(dump.u_comm, current->comm, sizeof(current->comm));
108 dump.u_ar0 = (void *)(((unsigned long)(&dump.regs)) - ((unsigned long)(&dump)));
110 dump.signal = signr;
111 dump_thread(regs, &dump);
113 /* If the size of the dump fil
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390/kernel/
H A Dprocess.c256 * fill in the FPU structure for a core dump.
265 * fill in the user structure for a core dump..
267 void dump_thread(struct pt_regs * regs, struct user * dump) argument
271 dump->magic = CMAGIC;
272 dump->start_code = 0;
273 dump->start_stack = regs->gprs[15] & ~(PAGE_SIZE - 1);
274 dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT;
275 dump->u_dsize = ((unsigned long) (current->mm->brk + (PAGE_SIZE-1))) >> PAGE_SHIFT;
276 dump->u_dsize -= dump
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390x/kernel/
H A Dprocess.c285 * fill in the FPU structure for a core dump.
294 * fill in the user structure for a core dump..
296 void dump_thread(struct pt_regs * regs, struct user * dump) argument
300 dump->magic = CMAGIC;
301 dump->start_code = 0;
302 dump->start_stack = regs->gprs[15] & ~(PAGE_SIZE - 1);
303 dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT;
304 dump->u_dsize = ((unsigned long) (current->mm->brk + (PAGE_SIZE-1))) >> PAGE_SHIFT;
305 dump->u_dsize -= dump
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sh/kernel/
H A Dprocess.c173 /* Fill in the fpu structure for a core dump.. */
234 * fill in the user structure for a core dump..
236 void dump_thread(struct pt_regs * regs, struct user * dump) argument
238 dump->magic = CMAGIC;
239 dump->start_code = current->mm->start_code;
240 dump->start_data = current->mm->start_data;
241 dump->start_stack = regs->regs[15] & ~(PAGE_SIZE - 1);
242 dump->u_tsize = (current->mm->end_code - dump->start_code) >> PAGE_SHIFT;
243 dump
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sparc64/kernel/
H A Dbinfmt_aout32.c76 * Routine writes a core dump image in the current directory.
79 * Note that setuid/setgid files won't make a core-dump if the uid/gid
90 struct user dump; local
98 strncpy(dump.u_comm, current->comm, sizeof(current->comm));
99 dump.signal = signr;
100 dump_thread(regs, &dump);
102 /* If the size of the dump file exceeds the rlimit, then see what would happen
104 if ((dump.u_dsize+dump.u_ssize) >
106 dump
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/i386/kernel/
H A Dprocess.c607 * fill in the user structure for a core dump..
609 void dump_thread(struct pt_regs * regs, struct user * dump) argument
614 dump->magic = CMAGIC;
615 dump->start_code = 0;
616 dump->start_stack = regs->esp & ~(PAGE_SIZE - 1);
617 dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT;
618 dump->u_dsize = ((unsigned long) (current->mm->brk + (PAGE_SIZE-1))) >> PAGE_SHIFT;
619 dump->u_dsize -= dump->u_tsize;
620 dump
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/aparser/
H A Dmain.awk3 @include dump.awk
14 dump_structs("dump.out");
H A DMakefile5 AWKPROGS=dump.awk harness.awk header.awk parsefn.awk main.awk parsetree.awk template.awk util.awk
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sparc/kernel/
H A Dprocess.c560 * fill in the user structure for a core dump..
562 void dump_thread(struct pt_regs * regs, struct user * dump) argument
566 dump->magic = SUNOS_CORE_MAGIC;
567 dump->len = sizeof(struct user);
568 dump->regs.psr = regs->psr;
569 dump->regs.pc = regs->pc;
570 dump->regs.npc = regs->npc;
571 dump->regs.y = regs->y;
573 memcpy(&dump->regs.regs[0], &regs->u_regs[1], (sizeof(unsigned long) * 15));
574 dump
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/net/wan/
H A Dsdlamain.c971 sdla_dump_t dump; local
978 if(copy_from_user((void*)&dump, (void*)u_dump, sizeof(sdla_dump_t)))
984 memcpy_fromfs((void*)&dump, (void*)u_dump, sizeof(sdla_dump_t));
987 if ((dump.magic != WANPIPE_MAGIC) ||
988 (dump.offset + dump.length > card->hw.memory))
992 if ((dump.ptr == NULL) ||
993 verify_area(VERIFY_WRITE, dump.ptr, dump.length))
1004 while (dump
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/include/
H A Dlibnetlink.h14 __u32 dump; member in struct:rtnl_handle
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/net/
H A Dpkt_cls.h58 int (*dump)(struct tcf_proto*, unsigned long, struct sk_buff *skb, struct tcmsg*); member in struct:tcf_proto_ops
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/net/
H A Dpkt_cls.h58 int (*dump)(struct tcf_proto*, unsigned long, struct sk_buff *skb, struct tcmsg*); member in struct:tcf_proto_ops
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/proc/
H A Dkcore.c8 * Support to dump vmalloc'd areas (ELF only), Tigran Aivazian <tigran@veritas.com>
44 struct user dump; local
51 memset(&dump, 0, sizeof(struct user));
52 dump.magic = CMAGIC;
53 dump.u_dsize = (virt_to_phys(high_memory) >> PAGE_SHIFT);
55 dump.start_code = PAGE_OFFSET;
58 dump.start_data = PAGE_OFFSET;
72 pnt = (char *) &dump + p;
247 if (m->flags & VM_IOREMAP) /* don't dump ioremap'd stuff! (TA) */
427 /* don't dump iorema
[all...]
/asus-wl-520gu-7.0.1.45/src/router/ez-ipupdate/
H A Dasus_ddns.c27 #define DUMP(k) dump (k, sizeof (k))
173 static void dump (unsigned char *p, unsigned int l) function
195 printf ("case 1:"); dump (digest, 16);
203 printf ("case 2:"); dump (digest, 16);
211 printf ("case 3:"); dump (digest, 16);
478 static void dump (unsigned char *p, unsigned int l) function
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dnetlink.h76 #define NLMSG_DONE 0x3 /* End of a dump */
123 int (*dump)(struct sk_buff * skb, struct netlink_callback *cb); member in struct:netlink_callback
156 int (*dump)(struct sk_buff *skb, struct netlink_callback*),
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dnetlink.h76 #define NLMSG_DONE 0x3 /* End of a dump */
123 int (*dump)(struct sk_buff * skb, struct netlink_callback *cb); member in struct:netlink_callback
156 int (*dump)(struct sk_buff *skb, struct netlink_callback*),
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/debugfs/
H A DMakefile.in21 lsdel.o dump.o set_fields.o logdump.o htree.o unused.o
25 $(srcdir)/dump.c $(srcdir)/set_fields.c ${srcdir}/logdump.c \
131 dump.o: $(srcdir)/dump.c $(srcdir)/debugfs.h \
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/usb/
H A Dauerisdn.c40 #define dump( desc, adr, len) \ macro
50 #define dump( desc, adr, len) macro
197 dump("D-Channel paket arrived:", bp->bufp, bp->len);
318 dump("Rearranged message:", bp->bufp,
329 dump("Shortened message:", bp->bufp,
441 dump("Data Request:", sp, len);
570 dump("local answer to L2 is:", l2_header,
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/kernel/
H A Dpci-gart.c222 static int dump; local
223 if (dump || !iommu_leak_tab) return;
224 dump = 1;
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/misc/
H A Ddumpe2fs.c230 static void list_bad_blocks(ext2_filsys fs, int dump) argument
249 if (dump) {
260 if (!dump)
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/cris/kernel/
H A Dprocess.c268 * fill in the user structure for a core dump..
270 void dump_thread(struct pt_regs * regs, struct user * dump) argument
274 /* Fill in the fpu structure for a core dump. */

Completed in 216 milliseconds

123