Home
last modified time | relevance | path

Searched refs:rbuf (Results 1 – 3 of 3) sorted by relevance

/developtools/profiler/host/smartperf/client/client_command/
Dsp_server_socket.cpp88 bzero(rbuf, sizeof(rbuf)); in Recvfrom()
90 …int l = recvfrom(sock, rbuf, sizeof(rbuf) - 1, 0, reinterpret_cast<struct sockaddr*>(&client), &le… in Recvfrom()
92 std::cout << "Client:" << rbuf << std::endl; in Recvfrom()
99 bzero(rbuf, sizeof(rbuf)); in Recv()
100 int l = recv(connFd, rbuf, sizeof(rbuf) - 1, 0); in Recv()
102 std::cout << "Client:" << rbuf << std::endl; in Recv()
112 std::string recvBuf = rbuf; in RecvBuf()
/developtools/profiler/host/smartperf/client/client_command/include/
Dsp_server_socket.h50 char rbuf[buffSizeRecv] = ""; variable
/developtools/hiperf/src/
Dperf_events.cpp1059 void *rbuf = mmap(nullptr, (1 + mmapPages_) * pageSize_, PROT_READ | PROT_WRITE, MAP_SHARED, in CreateMmap() local
1061 if (rbuf == MMAP_FAILED) { in CreateMmap()
1070 mmapItem.mmapPage = reinterpret_cast<perf_event_mmap_page *>(rbuf); in CreateMmap()
1071 mmapItem.buf = reinterpret_cast<uint8_t *>(rbuf) + pageSize_; in CreateMmap()