Searched refs:read (Results 476 - 500 of 686) sorted by relevance

<<11121314151617181920>>

/gem5/util/tap/
H A Dtap.cc204 virtual bool read(const char *&data, int &len) = 0;
217 virtual bool read(const char *&data, int &len);
229 virtual bool read(const char *&data, int &len);
265 PCap::read(const char *&data, int &len) function in class:PCap
295 Tap::read(const char *&data, int &len) function in class:Tap
297 DPRINTF("tap read!\n");
299 len = ::read(fd, buffer, sizeof(buffer));
459 if (tap->read(data, len) && client_pfd) {
474 int len = read(client_pfd->fd, buffer + buffer_offset,
478 perror("read");
[all...]
/gem5/src/base/vnc/
H A Dvncserver.hh157 /** DataEvent to read data from vnc */
216 * @param buf the data to read
217 * @param len the amount of data to read
218 * @return whether the read was successful
220 bool read(uint8_t *buf, size_t len);
223 * assert that we read enough bytes. This function exists to handle
224 * reading all of the protocol structs above when we've already read
226 * @param buf the address of the buffer to add one to and read data into
227 * @param len the amount of data + 1 to read
228 * @return whether the read wa
[all...]
H A Dvncserver.cc214 // read the client response
236 // Don't care about shared, just need to read it out of the socket
238 if (!read(&shared))
247 if (!read(&message_type))
282 // read from socket
284 VncServer::read(uint8_t *buf, size_t len) function in class:VncServer
291 ret = ::read(dataFd, buf, len);
307 return read(buf + 1, len - 1);
313 VncServer::read(T* val) function in class:VncServer
315 return read((uint8_
[all...]
/gem5/src/proto/
H A Dprotoio.cc108 fileStream.read((char*) bytes, 2);
177 ProtoInputStream::read(Message& msg) function in class:ProtoInputStream
195 panic("Unable to read message from coded stream %s\n",
H A Dprotoio.hh151 * @param filename Path to the file to read from
164 * @param msg Message read from the stream
165 * @param return True if a message was read, false if reading fails
167 bool read(google::protobuf::Message& msg);
/gem5/src/arch/x86/
H A Dpagetable.hh172 read(PortProxy &p, Addr table, Addr vaddr) function in class:X86ISA::LongModePTE
176 pte = p.read<PageTableEntry>(entryAddr);
/gem5/src/systemc/tests/systemc/misc/sim_tests/new_prop/new_prop1/
H A Dnew_prop1.cpp150 i[k] = ! i[k].read();
152 i[k] = ! i[k].read();
/gem5/src/systemc/tests/systemc/misc/sim_tests/new_prop/new_prop2/
H A Dnew_prop2.cpp151 i[k] = ! i[k].read();
153 i[k] = ! i[k].read();
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test4/
H A Dtest4.cpp104 if (a.event()) cout << "A = " << a.read() << " - ";
105 if (gate.event()) cout << "Gate = " << gate.read() << " - ";
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test5/
H A Dtest5.cpp104 if (a.event()) cout << "A = " << a.read() << " - ";
105 if (gate.event()) cout << "Gate = " << gate.read() << " - ";
/gem5/src/arch/alpha/
H A Dsystem.cc197 uint32_t i1 = virtProxy.read<uint32_t>(addr);
198 uint32_t i2 = virtProxy.read<uint32_t>(addr + sizeof(MachInst));
/gem5/ext/ply/example/BASIC/
H A Dbasiclog.py26 data = open(sys.argv[1]).read()
/gem5/util/batch/
H A Dbatch.py141 self.result = oar.fromchild.read()
146 self.result = pstdout.read()
238 self.result = pbs.fromchild.read()
246 self.result = ssh.fromchild.read()
/gem5/util/term/
H A Dterm.c172 if (read(nfd, buf, 0) < 0)
177 if (read(nfd, buf, 0) < 0)
181 if ((n = read(nfd, buf, sizeof(buf))) < 0)
193 if ((n = read(wfd, buf, sizeof(buf))) < 0)
255 * ensure all of data on socket comes through. f==read || f==write
/gem5/src/gpu-compute/
H A Dvector_register_state.hh63 read(int regIdx, int threadId=0) { function in class:VecRegisterState
H A Dcondition_register_state.hh61 read(int regIdx, int threadId) function in class:ConditionRegisterState
/gem5/src/dev/arm/
H A Dgpu_nomali.hh65 Tick read(PacketPtr pkt) override;
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_signal_ports.cpp52 sc_trace( p->tf, iface->read(), p->name );
134 sc_trace( p->tf, iface->read(), p->name );
251 sc_trace( p->tf, iface->read(), p->name );
342 sc_trace( p->tf, iface->read(), p->name );
H A Dsc_signal_resolved.h95 { write( a.read() ); return *this; }
/gem5/src/dev/serial/
H A Duart8250.hh91 Tick read(PacketPtr pkt) override;
/gem5/src/dev/virtio/
H A Dblock.hh134 * Device read request.
143 Status read(const BlkRequest &req, VirtDescriptor *desc_chain,
152 * should be read.
/gem5/src/systemc/channel/
H A Dsc_signal_resolved.cc75 write(r.read());
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_writer_policy/
H A Dsc_writer_policy.cpp287 sc_assert( resolved.read() == SC_LOGIC_X );
288 sc_assert( rv.read() == sc_lv<2>("XX") );
289 sc_assert( many_sig_2.read() == 8 );
290 sc_assert( buffy.read() == SC_LOGIC_0 );
/gem5/src/systemc/tests/systemc/bugs/async_reset_init/
H A Dasync_reset_init.cpp80 if( rst_in.read() ) {
/gem5/src/systemc/tests/systemc/communication/sc_signal/datatypes/test02/
H A Dtest02.cpp90 cout << sig.read() << endl;

Completed in 28 milliseconds

<<11121314151617181920>>