Lines Matching refs:buf4

57 	uint8_t buf4[8];  in _subthread_start()  local
58 Error err = cd->connection->get_data(buf4, 4); in _subthread_start()
64 int passlen = decode_uint32(buf4); in _subthread_start()
83 encode_uint32(ERR_INVALID_DATA, buf4); in _subthread_start()
84 cd->connection->put_data(buf4, 4); in _subthread_start()
92 encode_uint32(ERR_INVALID_DATA, buf4); in _subthread_start()
93 cd->connection->put_data(buf4, 4); in _subthread_start()
101 encode_uint32(OK, buf4); in _subthread_start()
102 cd->connection->put_data(buf4, 4); in _subthread_start()
107 err = cd->connection->get_data(buf4, 4); in _subthread_start()
115 int id = decode_uint32(buf4); in _subthread_start()
118 err = cd->connection->get_data(buf4, 4); in _subthread_start()
123 int cmd = decode_uint32(buf4); in _subthread_start()
132 err = cd->connection->get_data(buf4, 4); in _subthread_start()
138 int namelen = decode_uint32(buf4); in _subthread_start()
169 encode_uint32(id, buf4); in _subthread_start()
170 cd->connection->put_data(buf4, 4); in _subthread_start()
171 encode_uint32(FileAccessNetwork::RESPONSE_FILE_EXISTS, buf4); in _subthread_start()
172 cd->connection->put_data(buf4, 4); in _subthread_start()
173 encode_uint32(FileAccess::exists(s), buf4); in _subthread_start()
174 cd->connection->put_data(buf4, 4); in _subthread_start()
181 encode_uint32(id, buf4); in _subthread_start()
182 cd->connection->put_data(buf4, 4); in _subthread_start()
183 encode_uint32(FileAccessNetwork::RESPONSE_GET_MODTIME, buf4); in _subthread_start()
184 cd->connection->put_data(buf4, 4); in _subthread_start()
185 encode_uint64(FileAccess::get_modified_time(s), buf4); in _subthread_start()
186 cd->connection->put_data(buf4, 8); in _subthread_start()
194 encode_uint32(id, buf4); in _subthread_start()
195 cd->connection->put_data(buf4, 4); in _subthread_start()
196 encode_uint32(FileAccessNetwork::RESPONSE_OPEN, buf4); in _subthread_start()
197 cd->connection->put_data(buf4, 4); in _subthread_start()
198 encode_uint32(ERR_FILE_NOT_FOUND, buf4); in _subthread_start()
199 cd->connection->put_data(buf4, 4); in _subthread_start()
204 encode_uint32(id, buf4); in _subthread_start()
205 cd->connection->put_data(buf4, 4); in _subthread_start()
206 encode_uint32(FileAccessNetwork::RESPONSE_OPEN, buf4); in _subthread_start()
207 cd->connection->put_data(buf4, 4); in _subthread_start()
208 encode_uint32(OK, buf4); in _subthread_start()
209 cd->connection->put_data(buf4, 4); in _subthread_start()
210 encode_uint64(fa->get_len(), buf4); in _subthread_start()
211 cd->connection->put_data(buf4, 8); in _subthread_start()
219 err = cd->connection->get_data(buf4, 8); in _subthread_start()
227 uint64_t offset = decode_uint64(buf4); in _subthread_start()
229 err = cd->connection->get_data(buf4, 4); in _subthread_start()
235 int blocklen = decode_uint32(buf4); in _subthread_start()
247 encode_uint32(id, buf4); in _subthread_start()
248 cd->connection->put_data(buf4, 4); in _subthread_start()
249 encode_uint32(FileAccessNetwork::RESPONSE_DATA, buf4); in _subthread_start()
250 cd->connection->put_data(buf4, 4); in _subthread_start()
251 encode_uint64(offset, buf4); in _subthread_start()
252 cd->connection->put_data(buf4, 8); in _subthread_start()
253 encode_uint32(read, buf4); in _subthread_start()
254 cd->connection->put_data(buf4, 4); in _subthread_start()