Lines Matching defs:reply

1707 		} reply;
1731 reply.read_memory.data, size, bytesRead);
1733 reply.read_memory.error = result;
1736 "reply port: %" B_PRId32 ", address: %p, size: %" B_PRId32
1741 reply.read_memory.size = bytesRead;
1742 replySize = reply.read_memory.data + bytesRead - (char*)&reply;
1769 reply.write_memory.error = result;
1772 "reply port: %" B_PRId32 ", address: %p, size: %" B_PRId32
1776 reply.write_memory.size = bytesWritten;
1934 // send a reply to the debugger in case of error
1936 reply.get_cpu_state.error = result;
1938 replySize = sizeof(reply.get_cpu_state);
1967 // prepare the reply
1968 reply.set_breakpoint.error = result;
1969 replySize = sizeof(reply.set_breakpoint);
2030 // prepare the reply
2031 reply.set_watchpoint.error = result;
2032 replySize = sizeof(reply.set_watchpoint);
2145 ": reply port: %" B_PRId32 ", thread: %" B_PRId32 ", "
2151 reply.get_signal_masks.error = result;
2152 reply.get_signal_masks.ignore_mask = ignore;
2153 reply.get_signal_masks.ignore_once_mask = ignoreOnce;
2154 replySize = sizeof(reply.get_signal_masks);
2183 if (sigaction(signal, NULL, &reply.get_signal_handler.handler)
2189 ": reply port: %" B_PRId32 ", signal: %d, handler: %p\n",
2191 reply.get_signal_handler.handler.sa_handler));
2194 reply.get_signal_handler.error = result;
2195 replySize = sizeof(reply.get_signal_handler);
2346 // send a reply to the debugger
2347 reply.start_profiler.error = result;
2348 reply.start_profiler.interval = interval;
2349 reply.start_profiler.image_event = imageEvent;
2351 replySize = sizeof(reply.start_profiler);
2405 // prepare the reply
2407 reply.profiler_update.origin.thread = threadID;
2408 reply.profiler_update.image_event = imageEvent;
2409 reply.profiler_update.stack_depth = stackDepth;
2410 reply.profiler_update.variable_stack_depth
2412 reply.profiler_update.sample_count = sampleCount;
2413 reply.profiler_update.dropped_ticks = droppedTicks;
2414 reply.profiler_update.stopped = true;
2416 reply.profiler_update.origin.thread = result;
2445 // prepare the reply
2446 reply.write_core_file.error = result;
2447 replySize = sizeof(reply.write_core_file);
2454 // send the reply, if necessary
2457 &reply, replySize);
2462 TRACE(("nub thread %" B_PRId32 ": failed to send reply to port "