Home
last modified time | relevance | path

Searched refs:BUF_SIZE_SMALL (Results 1 – 10 of 10) sorted by relevance

/developtools/hdc/hdc_rust/src/cffi/
Dmount.cpp40 char dir[BUF_SIZE_SMALL] = ""; in FindMountDeviceByPath()
45 res = sscanf_s(buf, "%255s %255s %*s %*s %d %d\n", dev, BUF_SIZE_SMALL - 1, in FindMountDeviceByPath()
46 dir, BUF_SIZE_SMALL - 1, &freq, &passnno); in FindMountDeviceByPath()
48 dev[BUF_SIZE_SMALL - 1] = '\0'; in FindMountDeviceByPath()
49 dir[BUF_SIZE_SMALL - 1] = '\0'; in FindMountDeviceByPath()
71 char dev[BUF_SIZE_SMALL] = ""; in RemountPartition()
Dmount.h19 #define BUF_SIZE_SMALL 256 macro
/developtools/hdc/src/daemon/
Ddaemon_unity.cpp110 char dir[BUF_SIZE_SMALL] = ""; in FindMountDeviceByPath()
114 res = sscanf_s(token, "%255s %255s %*s %*s %d %d\n", dev, BUF_SIZE_SMALL - 1, in FindMountDeviceByPath()
115 dir, BUF_SIZE_SMALL - 1, &freq, &passnno); in FindMountDeviceByPath()
117 dev[BUF_SIZE_SMALL - 1] = '\0'; in FindMountDeviceByPath()
118 dir[BUF_SIZE_SMALL - 1] = '\0'; in FindMountDeviceByPath()
131 char dev[BUF_SIZE_SMALL] = ""; in RemountPartition()
Dshell.h44 char devname[BUF_SIZE_SMALL] = "";
/developtools/hdc/src/common/
Ddefine.h50 constexpr uint16_t BUF_SIZE_SMALL = 256; variable
Dforward.cpp551 char bufString[BUF_SIZE_SMALL] = ""; in BeginForward()
566 if (strlen(argv[0]) > BUF_SIZE_SMALL || strlen(argv[1]) > BUF_SIZE_SMALL) { in BeginForward()
Dauth.cpp437 char keyPaths[][BUF_SIZE_SMALL] = { "/root/.harmony/hdckey.pub" }; in LoadDaemonKey()
439 char keyPaths[][BUF_SIZE_SMALL] = { "/data/service/el0/hdc/hdc_keys" }; in LoadDaemonKey()
/developtools/hdc/src/host/
Dserver.cpp124 char buf[BUF_SIZE_SMALL] = ""; in PullupServerWin32()
168 char path[BUF_SIZE_SMALL] = ""; in PullupServer()
Dclient.cpp239 char buffer[BUF_SIZE_SMALL] = {0}; in RunCommandWin32()
/developtools/hdc/hdc_rust/src/common/
Dforward.rs56 pub const BUF_SIZE_SMALL: usize = 256; constant
1334 if argv[0].len() > BUF_SIZE_SMALL || argv[1].len() > BUF_SIZE_SMALL { in begin_forward()