Lines Matching refs:buf4

60 	uint8_t buf4[8];  in _subthread_start()  local
61 Error err = cd->connection->get_data(buf4, 4); in _subthread_start()
67 int passlen = decode_uint32(buf4); in _subthread_start()
86 encode_uint32(ERR_INVALID_DATA, buf4); in _subthread_start()
87 cd->connection->put_data(buf4, 4); in _subthread_start()
95 encode_uint32(ERR_INVALID_DATA, buf4); in _subthread_start()
96 cd->connection->put_data(buf4, 4); in _subthread_start()
104 encode_uint32(OK, buf4); in _subthread_start()
105 cd->connection->put_data(buf4, 4); in _subthread_start()
110 err = cd->connection->get_data(buf4, 4); in _subthread_start()
117 int id = decode_uint32(buf4); in _subthread_start()
120 err = cd->connection->get_data(buf4, 4); in _subthread_start()
125 int cmd = decode_uint32(buf4); in _subthread_start()
134 err = cd->connection->get_data(buf4, 4); in _subthread_start()
140 int namelen = decode_uint32(buf4); in _subthread_start()
171 encode_uint32(id, buf4); in _subthread_start()
172 cd->connection->put_data(buf4, 4); in _subthread_start()
173 encode_uint32(FileAccessNetwork::RESPONSE_FILE_EXISTS, buf4); in _subthread_start()
174 cd->connection->put_data(buf4, 4); in _subthread_start()
175 encode_uint32(FileAccess::exists(s2), buf4); in _subthread_start()
176 cd->connection->put_data(buf4, 4); in _subthread_start()
183 encode_uint32(id, buf4); in _subthread_start()
184 cd->connection->put_data(buf4, 4); in _subthread_start()
185 encode_uint32(FileAccessNetwork::RESPONSE_GET_MODTIME, buf4); in _subthread_start()
186 cd->connection->put_data(buf4, 4); in _subthread_start()
187 encode_uint64(FileAccess::get_modified_time(s2), buf4); in _subthread_start()
188 cd->connection->put_data(buf4, 8); in _subthread_start()
196 encode_uint32(id, buf4); in _subthread_start()
197 cd->connection->put_data(buf4, 4); in _subthread_start()
198 encode_uint32(FileAccessNetwork::RESPONSE_OPEN, buf4); in _subthread_start()
199 cd->connection->put_data(buf4, 4); in _subthread_start()
200 encode_uint32(ERR_FILE_NOT_FOUND, buf4); in _subthread_start()
201 cd->connection->put_data(buf4, 4); in _subthread_start()
206 encode_uint32(id, buf4); in _subthread_start()
207 cd->connection->put_data(buf4, 4); in _subthread_start()
208 encode_uint32(FileAccessNetwork::RESPONSE_OPEN, buf4); in _subthread_start()
209 cd->connection->put_data(buf4, 4); in _subthread_start()
210 encode_uint32(OK, buf4); in _subthread_start()
211 cd->connection->put_data(buf4, 4); in _subthread_start()
212 encode_uint64(fa->get_len(), buf4); in _subthread_start()
213 cd->connection->put_data(buf4, 8); in _subthread_start()
221 err = cd->connection->get_data(buf4, 8); in _subthread_start()
229 uint64_t offset = decode_uint64(buf4); in _subthread_start()
231 err = cd->connection->get_data(buf4, 4); in _subthread_start()
237 int blocklen = decode_uint32(buf4); in _subthread_start()
249 encode_uint32(id, buf4); in _subthread_start()
250 cd->connection->put_data(buf4, 4); in _subthread_start()
251 encode_uint32(FileAccessNetwork::RESPONSE_DATA, buf4); in _subthread_start()
252 cd->connection->put_data(buf4, 4); in _subthread_start()
253 encode_uint64(offset, buf4); in _subthread_start()
254 cd->connection->put_data(buf4, 8); in _subthread_start()
255 encode_uint32(read, buf4); in _subthread_start()
256 cd->connection->put_data(buf4, 4); in _subthread_start()