HomeSort by relevance Sort by last modified time
    Searched refs:buf (Results 651 - 675 of 13582) sorted by null

<<21222324252627282930>>

  /prebuilts/go/linux-x86/src/runtime/
sys_ppc64x.go 13 func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) {
14 if buf.lr != 0 {
17 buf.lr = buf.pc
18 buf.pc = uintptr(fn)
19 buf.ctxt = ctxt
sys_s390x.go 11 func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) {
12 if buf.lr != 0 {
15 buf.lr = buf.pc
16 buf.pc = uintptr(fn)
17 buf.ctxt = ctxt
  /tools/apksig/src/test/java/com/android/apksig/internal/util/
ByteStreams.java 34 byte[] buf = new byte[16384];
36 while ((chunkSize = in.read(buf)) != -1) {
37 result.write(buf, 0, chunkSize);
  /external/wpa_supplicant_8/src/ap/
rrm.c 96 const u8 *buf, size_t len)
98 const struct ieee80211_mgmt *mgmt = (const struct ieee80211_mgmt *) buf;
102 end = buf + len;
139 static u16 hostapd_parse_location_lci_req_age(const u8 *buf, size_t len)
148 subelem = get_ie(buf + 4, len - 4, LCI_REQ_SUBELEM_MAX_AGE);
183 static size_t hostapd_neighbor_report_len(struct wpabuf *buf,
205 struct wpabuf *buf; local
213 buf = wpabuf_alloc(3 + IEEE80211_MAX_MMPDU_SIZE);
214 if (!buf)
217 wpabuf_put_u8(buf, WLAN_ACTION_RADIO_MEASUREMENT)
369 struct wpabuf *buf; local
444 struct wpabuf *buf; local
572 struct wpabuf *buf; local
    [all...]
  /hardware/intel/img/psb_video/src/
psb_buffer.c 67 psb_buffer_p buf
76 buf->rar_handle = 0;
77 buf->buffer_ofs = 0;
79 buf->type = type;
80 buf->driver_data = driver_data; /* only for RAR buffers */
81 buf->size = size;
174 ret = wsbmGenBuffers(driver_data->main_pool, 1, &buf->drm_buf,
176 if (!buf->drm_buf) {
183 ret = wsbmBOData(buf->drm_buf, size, NULL, NULL, 0);
192 size, wsbmBOOffsetHint(buf->drm_buf))
    [all...]
  /bionic/libc/bionic/
fchmod.cpp 60 char buf[40]; local
61 snprintf(buf, sizeof(buf), "/proc/self/fd/%d", fd);
63 result = chmod(buf, mode);
flistxattr.cpp 55 char buf[40]; local
56 snprintf(buf, sizeof(buf), "/proc/self/fd/%d", fd);
58 return listxattr(buf, list, size);
  /bionic/libc/private/
bionic_arc4random.h 42 void __libc_safe_arc4random_buf(void* buf, size_t n, KernelArgumentBlock& args);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
BroadcastUtils.java 40 StringBuilder buf = new StringBuilder(); local
42 buf.append("extras: ");
44 buf.append("(" + s + " = " + bundle.get(s) + "), ");
47 return buf.toString();
  /cts/hostsidetests/security/securityPatch/CVE-2017-0577/
poc.c 37 char* buf = (char*) malloc(buf_len); local
38 if (buf == NULL ) {
43 ret = write(fd, buf, buf_len);
44 free(buf);
  /cts/tests/tests/alarmclock/common/src/android/alarmclock/common/
Utils.java 42 StringBuilder buf = new StringBuilder(); local
44 buf.append("extras: ");
46 buf.append("(" + s + " = " + bundle.get(s) + "), ");
49 return buf.toString();
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
SocketStream.h 35 virtual const unsigned char *readFully(void *buf, size_t len);
36 virtual const unsigned char *read(void *buf, size_t *inout_len);
39 virtual int recv(void *buf, size_t len);
40 virtual int writeFully(const void *buf, size_t len);
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
QemuPipeStream.h 36 virtual const unsigned char *readFully( void *buf, size_t len);
37 virtual const unsigned char *read( void *buf, size_t *inout_len);
40 int recv(void *buf, size_t len);
42 virtual int writeFully(const void *buf, size_t len);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regposerr.c 76 regerror(int posix_ecode, const regex_t* reg ARG_UNUSED, char* buf,
97 if (buf != NULL && size > 0) {
98 strncpy_s(buf, size, s, size - 1);
99 buf[size - 1] = '\0';
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
setbuffer.c 52 setbuffer(fp, buf, size)
54 char *buf;
59 /* buf may be NULL */
61 (void)setvbuf(fp, buf, buf ? _IOFBF : _IONBF, (size_t)size);
  /external/boringssl/src/crypto/asn1/
f_enum.c 67 char buf[2]; local
83 buf[0] = h[((unsigned char)a->data[i] >> 4) & 0x0f];
84 buf[1] = h[((unsigned char)a->data[i]) & 0x0f];
85 if (BIO_write(bp, buf, 2) != 2)
f_string.c 65 char buf[2]; local
81 buf[0] = h[((unsigned char)a->data[i] >> 4) & 0x0f];
82 buf[1] = h[((unsigned char)a->data[i]) & 0x0f];
83 if (BIO_write(bp, buf, 2) != 2)
  /external/compiler-rt/test/asan/TestCases/Posix/
readv.cc 15 char buf[2011]; local
18 char * volatile buf_ = buf;
21 iov[0].iov_base = buf + 1;
24 iov[1].iov_base = buf + 10;
  /external/compiler-rt/test/msan/Linux/
glob.cc 13 char buf[1024]; local
14 snprintf(buf, sizeof(buf), "%s/%s", argv[1], "glob_test_root/*a");
17 int res = glob(buf, 0, 0, &globbuf);
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
TestSessionBuilder.java 131 ByteBuffer buf = ByteBuffer.allocate(4096); local
132 buf.putInt(type);
134 buf.putInt(sessionDataLength);
135 buf.put(sessionData);
137 buf.putInt(certificatesLength);
139 buf.putInt(certificateLengths.get(i));
140 buf.put(certificates.get(i));
144 buf.putInt(ocspDatasLength);
146 buf.putInt(ocspDataLengths.get(i));
147 buf.put(ocspDatas.get(i))
    [all...]
  /external/google-breakpad/src/common/linux/
guid_creator.h 46 bool GUIDToString(const GUID *guid, char *buf, int buf_len);
  /external/google-breakpad/src/common/solaris/
guid_creator.h 48 bool GUIDToString(const GUID *guid, char *buf, int buf_len);
  /external/google-breakpad/src/third_party/libdisasm/
ia32_operand.h 7 size_t ia32_decode_operand( unsigned char *buf, size_t buf_len,
  /external/iproute2/include/
rtm_map.h 4 char *rtnl_rtntype_n2a(int id, char *buf, int len);
  /external/ksoap2/kobjects/org/ksoap2/kobjects/base64/
Base64.java 45 StringBuffer buf) {
47 if (buf == null)
48 buf = new StringBuffer(data.length * 3 / 2);
60 buf.append(charTab[(d >> 18) & 63]);
61 buf.append(charTab[(d >> 12) & 63]);
62 buf.append(charTab[(d >> 6) & 63]);
63 buf.append(charTab[d & 63]);
69 buf.append("\r\n");
78 buf.append(charTab[(d >> 18) & 63]);
79 buf.append(charTab[(d >> 12) & 63])
    [all...]

Completed in 1459 milliseconds

<<21222324252627282930>>