HomeSort by relevance Sort by last modified time
    Searched refs:buff (Results 251 - 275 of 549) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/experimental/filesystem/
operations.cpp 166 char buff[PATH_MAX + 1]; local
168 if ((ret = ::realpath(p.c_str(), buff)) == nullptr) {
412 auto buff = std::unique_ptr<char[]>(new char[size + 1]); local
414 if ((ret = ::getcwd(buff.get(), static_cast<size_t>(size))) == nullptr) {
419 return {buff.get()};
646 char buff[PATH_MAX + 1]; local
649 if ((ret = ::readlink(p.c_str(), buff, PATH_MAX)) == -1) {
656 buff[ret] = 0;
657 return {buff};
  /toolchain/binutils/binutils-2.27/bfd/
ecofflink.c 1422 char *buff = NULL; local
    [all...]
  /device/generic/goldfish/vibrator/
qemu.c 65 qemu_fd_read( int fd, char* buff, int len )
69 len2 = read(fd, buff, len);
  /external/compiler-rt/lib/asan/tests/
asan_test.cc 291 char buff[1024]; local
292 sprintf(buff, "is located 1 bytes to the left of %lu-byte", (long)size);
293 EXPECT_DEATH(Ident((char*)malloc(size))[-1] = 0, buff); local
1311 char buff[5]; local
    [all...]
  /external/freetype/src/gxvalid/
gxvmort2.c 94 FT_UShort buff[7]; local
115 gxv_set_length_by_ushort_offset( o, l, buff, 6, table_size, gxvalid );
gxvmorx2.c 96 FT_ULong buff[7]; local
117 gxv_set_length_by_ulong_offset( o, l, buff, 6, table_size, gxvalid );
  /external/iproute2/ip/
ipila.c 51 static int print_addr64(__u64 addr, char *buff, size_t len)
65 ret = snprintf(&buff[written], len - written, "%x%s", v, sep);
  /external/squashfs-tools/squashfs-tools/
process_fragments.c 80 static int read_filesystem(int fd, long long byte, int bytes, void *buff)
91 } else if(read_bytes(fd, buff, bytes) < bytes) {
mksquashfs.c 173 unsigned char *buff; member in struct:directory
336 unsigned short get_checksum_mem(char *buff, int bytes);
531 int read_bytes(int fd, void *buff, int bytes)
536 res = read(fd, buff + count, bytes - count);
554 int read_fs_bytes(int fd, long long byte, int bytes, void *buff)
568 } else if(read_bytes(fd, buff, bytes) < bytes) {
578 int write_bytes(int fd, void *buff, int bytes)
583 res = write(fd, buff + count, bytes - count);
598 void write_destination(int fd, long long byte, int bytes, void *buff)
613 if(write_bytes(fd, buff, bytes) == -1
1215 unsigned char *buff; local
3606 static char buff[65536]; \/* overflow safe *\/ local
    [all...]
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
WaltTcpConnection.java 155 public synchronized int blockingRead(byte[] buff) {
194 System.arraycopy(buffer, 0, buff, 0, lastRetVal);
  /hardware/intel/img/hwcomposer/merrifield/common/base/
HwcModule.cpp 67 char *buff,
71 hwc->dump(buff, buff_len, 0);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
HwcModule.cpp 73 char *buff,
77 hwc->dump(buff, buff_len, 0);
  /hardware/interfaces/automotive/evs/1.0/vts/functional/
FrameHandler.cpp 145 mDisplay->getTargetBuffer([&tgtBuffer](const BufferDesc& buff) {
146 tgtBuffer = buff;
  /packages/services/Car/evs/app/
EvsStateControl.cpp 172 mDisplay->getTargetBuffer([&tgtBuffer](const BufferDesc& buff) {
173 tgtBuffer = buff;
  /system/core/adb/
transport.cpp 148 char buff[8]; local
150 snprintf(buff, sizeof buff, "fd=%d", fd);
151 name = buff;
172 char buff[8]; local
174 snprintf(buff, sizeof buff, "fd=%d", fd);
175 name = buff;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ldebug.c 560 char buff[LUA_IDSIZE]; /* add file:line information */ local
564 luaO_chunkid(buff, getstr(src), LUA_IDSIZE);
566 buff[0] = '?'; buff[1] = '\0';
568 luaO_pushfstring(L, "%s:%d: %s", buff, line, msg);
loadlib.c 169 char buff[MAX_PATH + 1]; local
171 DWORD nsize = sizeof(buff)/sizeof(char);
172 DWORD n = GetModuleFileNameA(NULL, buff, nsize);
173 if (n == 0 || n == nsize || (lb = strrchr(buff, '\\')) == NULL)
177 luaL_gsub(L, lua_tostring(L, -1), LUA_EXEC_DIR, buff);
  /external/syslinux/com32/lua/src/
ldebug.c 560 char buff[LUA_IDSIZE]; /* add file:line information */ local
564 luaO_chunkid(buff, getstr(src), LUA_IDSIZE);
566 buff[0] = '?'; buff[1] = '\0';
568 luaO_pushfstring(L, "%s:%d: %s", buff, line, msg);
loadlib.c 173 char buff[MAX_PATH + 1]; local
175 DWORD nsize = sizeof(buff)/sizeof(char);
176 DWORD n = GetModuleFileNameA(NULL, buff, nsize);
177 if (n == 0 || n == nsize || (lb = strrchr(buff, '\\')) == NULL)
181 luaL_gsub(L, lua_tostring(L, -1), LUA_EXEC_DIR, buff);
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcTag.java 806 byte[] buff = readNdef();
807 if (buff != null && buff.length > 0) {
809 ndefMsg = new NdefMessage(buff);
820 } else if(buff != null){
  /packages/services/BuiltInPrintService/jni/plugins/
plugin_pcl.c 283 char *buff; local
404 buff = buff_pool[buff_index];
410 (unsigned char *) buff);
417 memset(buff, 0xff, buff_size);
422 msg.param.send.buffer = buff;
  /prebuilts/misc/common/commons-cli/
commons-cli-1.2.jar 
  /prebuilts/tools/common/m2/repository/commons-cli/commons-cli/1.2/
commons-cli-1.2.jar 
  /toolchain/binutils/binutils-2.27/binutils/
readelf.c 2071 static char buff[64]; local
2240 static char buff[32]; local
2264 static char buff[64]; \/* XXX *\/ local
3617 static char buff[32]; local
3808 static char buff[32]; local
4085 static char buff[32]; local
4568 static char buff[32]; local
4584 static char buff[32]; local
5461 static char buff[1024]; local
6233 static char buff[32]; local
9785 static char buff[32]; local
10323 static char buff[32]; local
10352 static char buff[32]; local
10537 static char buff [32]; local
10568 static char buff[32]; local
15322 static char buff[64]; local
15502 static char buff[64]; local
15606 static char buff[64]; local
15748 static char buff[64]; local
15810 static char buff[64]; local
15865 static char buff[64]; local
    [all...]
windmc.c 1111 char *buff; local
1121 buff = malloc (flen + 3);
1122 memset (buff, 0, flen + 3);
1123 if (fread (buff, 1, flen, fp) < flen)
1128 unicode_from_codepage (&ul, &u, buff, mcset_codepage_in);
1137 mc_set_content ((unichar *) buff);
1139 free (buff);

Completed in 977 milliseconds

<<11121314151617181920>>