Searched refs:rbuf (Results 1 – 3 of 3) sorted by relevance
/developtools/profiler/host/smartperf/client/client_command/ |
D | sp_server_socket.cpp | 104 bzero(rbuf, sizeof(rbuf)); in Recvfrom() 106 …int l = recvfrom(sock, rbuf, sizeof(rbuf) - 1, 0, reinterpret_cast<struct sockaddr *>(&client), &l… in Recvfrom() 108 std::cout << "Client:" << rbuf << std::endl; in Recvfrom() 115 bzero(rbuf, sizeof(rbuf)); in Recv() 116 int l = recv(connFd, rbuf, sizeof(rbuf) - 1, 0); in Recv() 118 std::cout << "Client:" << rbuf << std::endl; in Recv() 129 std::string recvBuf = rbuf; in RecvBuf()
|
/developtools/profiler/host/smartperf/client/client_command/include/ |
D | sp_server_socket.h | 50 char rbuf[buffSizeRecv] = ""; variable
|
/developtools/hiperf/src/ |
D | perf_events.cpp | 1090 void *rbuf = mmap(nullptr, (1 + mmapPages_) * pageSize_, PROT_READ | PROT_WRITE, MAP_SHARED, in CreateMmap() local 1092 if (rbuf == MMAP_FAILED) { in CreateMmap() 1101 mmapItem.mmapPage = reinterpret_cast<perf_event_mmap_page *>(rbuf); in CreateMmap() 1102 mmapItem.buf = reinterpret_cast<uint8_t *>(rbuf) + pageSize_; in CreateMmap()
|