mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-31 16:09:03 -05:00 
			
		
		
		
	am: Implement IStorageAccessor::Write.
This commit is contained in:
		| @@ -397,7 +397,7 @@ public: | ||||
|         : ServiceFramework("IStorageAccessor"), buffer(std::move(buffer)) { | ||||
|         static const FunctionInfo functions[] = { | ||||
|             {0, &IStorageAccessor::GetSize, "GetSize"}, | ||||
|             {10, nullptr, "Write"}, | ||||
|             {10, &IStorageAccessor::Write, "Write"}, | ||||
|             {11, &IStorageAccessor::Read, "Read"}, | ||||
|         }; | ||||
|         RegisterHandlers(functions); | ||||
| @@ -415,6 +415,22 @@ private: | ||||
|         NGLOG_DEBUG(Service_AM, "called"); | ||||
|     } | ||||
|  | ||||
|     void Write(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|  | ||||
|         const u64 offset{rp.Pop<u64>()}; | ||||
|         const std::vector<u8> data{ctx.ReadBuffer()}; | ||||
|  | ||||
|         ASSERT(offset + data.size() <= buffer.size()); | ||||
|  | ||||
|         std::memcpy(&buffer[offset], data.data(), data.size()); | ||||
|  | ||||
|         IPC::ResponseBuilder rb{rp.MakeBuilder(2, 0, 0)}; | ||||
|         rb.Push(RESULT_SUCCESS); | ||||
|  | ||||
|         NGLOG_DEBUG(Service_AM, "called, offset={}", offset); | ||||
|     } | ||||
|  | ||||
|     void Read(Kernel::HLERequestContext& ctx) { | ||||
|         IPC::RequestParser rp{ctx}; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 bunnei
					bunnei