Lines Matching defs:data

97      * Initial data value. No requirements.
114 data(_data)
123 * Depending on the memory operation, the data value either represents:
127 uint8_t data;
154 * @param data The data that this write passed to the memory
157 void startWrite(Serial serial, Tick _start, uint8_t data);
229 * iterates through all data that such a read is expected to see. The
230 * data parameter is the actual value that we observed, and the
234 * The set of expected data are:
239 * 2. The data produced by write transactions with a completion after
240 * the last observed read start time. Only data produced in the
247 * @param data The value that we have actually seen.
251 bool inExpectedData(Tick start, Tick complete, uint8_t data);
258 * @param data The data returned by the memory subsystem.
260 bool completeRead(Serial serial, Tick complete, uint8_t data);
268 * @param data The data that this write passed to the memory
271 void startWrite(Serial serial, Tick start, uint8_t data);
291 * This function returns the expected data that inExpectedData iterated
297 * expected data that inExpectedData iterated through.
387 * @param size Size of data expected.
398 * @param size Size of data to be written.
399 * @param data Pointer to size bytes, containing data to be written.
403 Serial startWrite(Tick start, Addr addr, size_t size, const uint8_t *data);
412 * @param size Size of data received.
413 * @param data Pointer to size bytes, containing data received.
415 * @return True if the data we received is in the expected set, false
419 Addr addr, size_t size, uint8_t *data);
429 * @param size The size of the data written.
439 * @param size The size of the data written.
531 MemChecker::startWrite(Tick start, Addr addr, size_t size, const uint8_t *data)
538 getByteTracker(addr + i)->startWrite(nextSerial, start, data[i]);