Lines Matching defs:loc
344 check_string(uintptr_t loc, uint32_t len, uint32_t sz)
346 const char *ptr = (const char *)loc;
361 uintptr_t loc;
365 loc = (uintptr_t)cmds_arg;
370 cmds = (struct rep_protocol_transaction_cmd *)loc;
375 loc += REP_PROTOCOL_TRANSACTION_CMD_MIN_SIZE;
379 if (len <= 1 || !check_string(loc, len, sz)) {
382 cur->tx_prop = (const char *)loc;
385 loc += len;
389 cur->tx_values = (uint32_t *)loc;
397 len = *(uint32_t *)loc;
398 loc += sizeof (uint32_t);
401 if (!check_string(loc, len, sz))
414 loc += len;
461 uintptr_t loc;
471 loc = (uintptr_t)cmds_arg;
474 cmds = (struct rep_protocol_transaction_cmd *)loc;
487 loc += sz;