Lines Matching refs:val

7 fetch_store_raw(unsigned long val, struct fetch_insn *code, void *buf)  in fetch_store_raw()  argument
11 *(u8 *)buf = (u8)val; in fetch_store_raw()
14 *(u16 *)buf = (u16)val; in fetch_store_raw()
17 *(u32 *)buf = (u32)val; in fetch_store_raw()
21 *(u64 *)buf = (u64)val; in fetch_store_raw()
24 *(unsigned long *)buf = val; in fetch_store_raw()
103 process_common_fetch_insn(struct fetch_insn *code, unsigned long *val) in process_common_fetch_insn() argument
107 *val = code->immediate; in process_common_fetch_insn()
110 *val = (unsigned long)current->comm; in process_common_fetch_insn()
113 *val = (unsigned long)code->data; in process_common_fetch_insn()
123 process_fetch_insn_bottom(struct fetch_insn *code, unsigned long val, in process_fetch_insn_bottom() argument
129 unsigned long lval = val; in process_fetch_insn_bottom()
135 lval = val; in process_fetch_insn_bottom()
136 ret = probe_mem_read(&val, (void *)val + code->offset, in process_fetch_insn_bottom()
137 sizeof(val)); in process_fetch_insn_bottom()
139 lval = val; in process_fetch_insn_bottom()
140 ret = probe_mem_read_user(&val, in process_fetch_insn_bottom()
141 (void *)val + code->offset, sizeof(val)); in process_fetch_insn_bottom()
155 ret = fetch_store_strlen(val + code->offset); in process_fetch_insn_bottom()
159 ret = fetch_store_strlen_user(val + code->offset); in process_fetch_insn_bottom()
163 ret = fetch_store_symstrlen(val + code->offset); in process_fetch_insn_bottom()
173 fetch_store_raw(val, code, dest); in process_fetch_insn_bottom()
176 probe_mem_read(dest, (void *)val + code->offset, code->size); in process_fetch_insn_bottom()
179 probe_mem_read_user(dest, (void *)val + code->offset, code->size); in process_fetch_insn_bottom()
183 ret = fetch_store_string(val + code->offset, dest, base); in process_fetch_insn_bottom()
187 ret = fetch_store_string_user(val + code->offset, dest, base); in process_fetch_insn_bottom()
191 ret = fetch_store_symstring(val + code->offset, dest, base); in process_fetch_insn_bottom()
215 val += s3->size; in process_fetch_insn_bottom()
219 val = lval + sizeof(char *); in process_fetch_insn_bottom()