Lines Matching refs:data

40 RemoteDebugRequest::LoadFromMessage(const BMessage& data)
42 if (data.FindInt32("type") != Type())
45 return LoadSpecificInfoFromMessage(data);
100 RemoteDebugResponse::LoadFromMessage(const BMessage& data)
102 if (data.FindInt32("type") != Request()->Type())
108 return LoadSpecificInfoFromMessage(data);
133 RemoteDebugResponse::LoadSpecificInfoFromMessage(const BMessage& data)
179 RemoteDebugReadMemoryRequest::LoadSpecificInfoFromMessage(const BMessage& data)
181 if (data.FindUInt64("address", &fAddress) != B_OK)
184 if (data.FindUInt64("size", &fSize) != B_OK)
224 RemoteDebugWriteMemoryRequest::SetTo(target_addr_t address, const void* data,
227 if (size == 0 || data == NULL)
237 memcpy(fData, data, fSize);
251 const BMessage& data)
253 if (data.FindUInt64("address", &fAddress) != B_OK)
256 if (data.FindUInt64("size", &fSize) != B_OK)
265 status_t error = data.FindData("data", B_RAW_TYPE, &messageData,
291 return _output.AddData("data", B_RAW_TYPE, fData, (ssize_t)fSize);
327 const BMessage& data)
329 if (data.FindInt32("flags", &fFlags) != B_OK)
378 const BMessage& data)
380 if (data.FindInt32("thread", &fThread) != B_OK)
383 if (data.FindInt32("flags", &fFlags) != B_OK)
427 const BMessage& data)
429 if (data.FindInt32("thread", &fThread) != B_OK)
567 const BMessage& data)
569 if (data.FindInt32("thread", &fThread) != B_OK)
580 status_t error = data.FindData("state", B_RAW_TYPE, (const void**)&buffer,
636 const BMessage& data)
638 return data.FindUInt64("address", &fAddress);
730 const BMessage& data)
732 status_t error = data.FindUInt64("address", &fAddress);
736 error = data.FindUInt32("watchtype", &fWatchType);
740 return data.FindInt32("length", &fLength);
802 RemoteDebugReadMemoryResponse::SetTo(void* data, target_size_t size)
804 fData = data;
811 const BMessage& data)
813 status_t error = data.FindUInt64("size", &fSize);
823 error = data.FindData("data", B_RAW_TYPE, &messageData, &numBytes);
846 return _output.AddData("data", B_RAW_TYPE, fData, (ssize_t)fSize);
879 const BMessage& data)
889 status_t error = data.FindData("state", B_RAW_TYPE, (const void**)&buffer,