Home
last modified time | relevance | path

Searched refs:buf (Results 1 – 25 of 6575) sorted by relevance

12345678910>>...263

/third_party/libunwind/tests/
DLrs-race.c49 void *buf[20]; in foo_0() local
52 if ((n = unw_backtrace (buf, 20)) < 3) in foo_0()
59 void *buf[20]; in foo_1() local
62 if ((n = unw_backtrace (buf, 20)) < 3) in foo_1()
69 void *buf[20]; in foo_2() local
72 if ((n = unw_backtrace (buf, 20)) < 3) in foo_2()
79 void *buf[20]; in foo_3() local
82 if ((n = unw_backtrace (buf, 20)) < 3) in foo_3()
89 void *buf[20]; in foo_4() local
92 if ((n = unw_backtrace (buf, 20)) < 3) in foo_4()
[all …]
/third_party/mesa3d/src/util/
Du_dynarray.h54 util_dynarray_init(struct util_dynarray *buf, void *mem_ctx) in util_dynarray_init() argument
56 memset(buf, 0, sizeof(*buf)); in util_dynarray_init()
57 buf->mem_ctx = mem_ctx; in util_dynarray_init()
61 util_dynarray_fini(struct util_dynarray *buf) in util_dynarray_fini() argument
63 if (buf->data) { in util_dynarray_fini()
64 if (buf->mem_ctx) { in util_dynarray_fini()
65 ralloc_free(buf->data); in util_dynarray_fini()
67 free(buf->data); in util_dynarray_fini()
69 util_dynarray_init(buf, buf->mem_ctx); in util_dynarray_fini()
74 util_dynarray_clear(struct util_dynarray *buf) in util_dynarray_clear() argument
[all …]
Du_idalloc.c40 util_idalloc_resize(struct util_idalloc *buf, unsigned new_num_elements) in util_idalloc_resize() argument
42 if (new_num_elements > buf->num_elements) { in util_idalloc_resize()
43 buf->data = realloc(buf->data, new_num_elements * sizeof(*buf->data)); in util_idalloc_resize()
44 memset(&buf->data[buf->num_elements], 0, in util_idalloc_resize()
45 (new_num_elements - buf->num_elements) * sizeof(*buf->data)); in util_idalloc_resize()
46 buf->num_elements = new_num_elements; in util_idalloc_resize()
51 util_idalloc_init(struct util_idalloc *buf, unsigned initial_num_ids) in util_idalloc_init() argument
53 memset(buf, 0, sizeof(*buf)); in util_idalloc_init()
55 util_idalloc_resize(buf, DIV_ROUND_UP(initial_num_ids, 32)); in util_idalloc_init()
59 util_idalloc_fini(struct util_idalloc *buf) in util_idalloc_fini() argument
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/
Dp2p_build.c18 void p2p_buf_add_action_hdr(struct wpabuf *buf, u8 subtype, u8 dialog_token) in p2p_buf_add_action_hdr() argument
20 wpabuf_put_u8(buf, WLAN_ACTION_VENDOR_SPECIFIC); in p2p_buf_add_action_hdr()
21 wpabuf_put_be32(buf, P2P_IE_VENDOR_TYPE); in p2p_buf_add_action_hdr()
23 wpabuf_put_u8(buf, subtype); /* OUI Subtype */ in p2p_buf_add_action_hdr()
24 wpabuf_put_u8(buf, dialog_token); in p2p_buf_add_action_hdr()
29 void p2p_buf_add_public_action_hdr(struct wpabuf *buf, u8 subtype, in p2p_buf_add_public_action_hdr() argument
32 wpabuf_put_u8(buf, WLAN_ACTION_PUBLIC); in p2p_buf_add_public_action_hdr()
33 wpabuf_put_u8(buf, WLAN_PA_VENDOR_SPECIFIC); in p2p_buf_add_public_action_hdr()
34 wpabuf_put_be32(buf, P2P_IE_VENDOR_TYPE); in p2p_buf_add_public_action_hdr()
36 wpabuf_put_u8(buf, subtype); /* OUI Subtype */ in p2p_buf_add_public_action_hdr()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/
Dp2p_build.c18 void p2p_buf_add_action_hdr(struct wpabuf *buf, u8 subtype, u8 dialog_token) in p2p_buf_add_action_hdr() argument
20 wpabuf_put_u8(buf, WLAN_ACTION_VENDOR_SPECIFIC); in p2p_buf_add_action_hdr()
21 wpabuf_put_be32(buf, P2P_IE_VENDOR_TYPE); in p2p_buf_add_action_hdr()
23 wpabuf_put_u8(buf, subtype); /* OUI Subtype */ in p2p_buf_add_action_hdr()
24 wpabuf_put_u8(buf, dialog_token); in p2p_buf_add_action_hdr()
29 void p2p_buf_add_public_action_hdr(struct wpabuf *buf, u8 subtype, in p2p_buf_add_public_action_hdr() argument
32 wpabuf_put_u8(buf, WLAN_ACTION_PUBLIC); in p2p_buf_add_public_action_hdr()
33 wpabuf_put_u8(buf, WLAN_PA_VENDOR_SPECIFIC); in p2p_buf_add_public_action_hdr()
34 wpabuf_put_be32(buf, P2P_IE_VENDOR_TYPE); in p2p_buf_add_public_action_hdr()
36 wpabuf_put_u8(buf, subtype); /* OUI Subtype */ in p2p_buf_add_public_action_hdr()
[all …]
/third_party/ffmpeg/libavutil/
Dbprint.c33 #define av_bprint_room(buf) ((buf)->size - FFMIN((buf)->len, (buf)->size)) argument
34 #define av_bprint_is_allocated(buf) ((buf)->str != (buf)->reserved_internal_buffer) argument
36 static int av_bprint_alloc(AVBPrint *buf, unsigned room) in av_bprint_alloc() argument
41 if (buf->size == buf->size_max) in av_bprint_alloc()
43 if (!av_bprint_is_complete(buf)) in av_bprint_alloc()
45 min_size = buf->len + 1 + FFMIN(UINT_MAX - buf->len - 1, room); in av_bprint_alloc()
46 new_size = buf->size > buf->size_max / 2 ? buf->size_max : buf->size * 2; in av_bprint_alloc()
48 new_size = FFMIN(buf->size_max, min_size); in av_bprint_alloc()
49 old_str = av_bprint_is_allocated(buf) ? buf->str : NULL; in av_bprint_alloc()
54 memcpy(new_str, buf->str, buf->len + 1); in av_bprint_alloc()
[all …]
/third_party/musl/libc-test/src/functionalext/unittest/
Dunit_test_hilog_vsnprint_f_p.c43 char buf[MAX_LOG_LEN] = {0}; in vsnprintfp_s_0010() local
45 int ret = vsprintf_test(buf, MAX_LOG_LEN, MAX_LOG_LEN - 1, true, fmt); in vsnprintfp_s_0010()
47 EXPECT_STREQ("vsnprintfp_s_0010", buf, "MUSL"); in vsnprintfp_s_0010()
57 char *buf = NULL; in vsnprintfp_s_0020() local
59 int ret = vsprintf_test(buf, MAX_LOG_LEN, MAX_LOG_LEN - 1, true, fmt); in vsnprintfp_s_0020()
70 char buf[MAX_LOG_LEN] = {0}; in vsnprintfp_s_0030() local
72 int ret = vsprintf_test(buf, MAX_LOG_LEN - 1, MAX_LOG_LEN, true, fmt); in vsnprintfp_s_0030()
74 EXPECT_STREQ("vsnprintfp_s_0030", buf, "MUSL"); in vsnprintfp_s_0030()
84 char buf[MAX_LOG_LEN] = {0}; in vsnprintfp_s_0040() local
86 int ret = vsprintf_test(buf, MAX_LOG_LEN - 1, MAX_LOG_LEN, false, fmt, "MUSL"); in vsnprintfp_s_0040()
[all …]
/third_party/python/Modules/_blake2/impl/
Dblake2s-load-sse2.h17 #define LOAD_MSG_0_1(buf) buf = _mm_set_epi32(m6,m4,m2,m0) argument
18 #define LOAD_MSG_0_2(buf) buf = _mm_set_epi32(m7,m5,m3,m1) argument
19 #define LOAD_MSG_0_3(buf) buf = _mm_set_epi32(m14,m12,m10,m8) argument
20 #define LOAD_MSG_0_4(buf) buf = _mm_set_epi32(m15,m13,m11,m9) argument
21 #define LOAD_MSG_1_1(buf) buf = _mm_set_epi32(m13,m9,m4,m14) argument
22 #define LOAD_MSG_1_2(buf) buf = _mm_set_epi32(m6,m15,m8,m10) argument
23 #define LOAD_MSG_1_3(buf) buf = _mm_set_epi32(m5,m11,m0,m1) argument
24 #define LOAD_MSG_1_4(buf) buf = _mm_set_epi32(m3,m7,m2,m12) argument
25 #define LOAD_MSG_2_1(buf) buf = _mm_set_epi32(m15,m5,m12,m11) argument
26 #define LOAD_MSG_2_2(buf) buf = _mm_set_epi32(m13,m2,m0,m8) argument
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
Dwpabuf.c22 static struct wpabuf_trace * wpabuf_get_trace(const struct wpabuf *buf) in wpabuf_get_trace() argument
25 ((const u8 *) buf - sizeof(struct wpabuf_trace)); in wpabuf_get_trace()
30 static void wpabuf_overflow(const struct wpabuf *buf, size_t len) in wpabuf_overflow() argument
33 struct wpabuf_trace *trace = wpabuf_get_trace(buf); in wpabuf_overflow()
40 buf, (unsigned long) buf->size, (unsigned long) buf->used, in wpabuf_overflow()
49 struct wpabuf *buf = *_buf; in wpabuf_resize() local
54 if (buf == NULL) { in wpabuf_resize()
60 trace = wpabuf_get_trace(buf); in wpabuf_resize()
69 if (buf->used + add_len > buf->size) { in wpabuf_resize()
71 if (buf->flags & WPABUF_FLAG_EXT_DATA) { in wpabuf_resize()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
Dwpabuf.c22 static struct wpabuf_trace * wpabuf_get_trace(const struct wpabuf *buf) in wpabuf_get_trace() argument
25 ((const u8 *) buf - sizeof(struct wpabuf_trace)); in wpabuf_get_trace()
30 static void wpabuf_overflow(const struct wpabuf *buf, size_t len) in wpabuf_overflow() argument
33 struct wpabuf_trace *trace = wpabuf_get_trace(buf); in wpabuf_overflow()
40 buf, (unsigned long) buf->size, (unsigned long) buf->used, in wpabuf_overflow()
49 struct wpabuf *buf = *_buf; in wpabuf_resize() local
54 if (buf == NULL) { in wpabuf_resize()
60 trace = wpabuf_get_trace(buf); in wpabuf_resize()
69 if (buf->used + add_len > buf->size) { in wpabuf_resize()
71 if (buf->flags & WPABUF_FLAG_EXT_DATA) { in wpabuf_resize()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Dgstaudioringbuffer.c51 static gboolean gst_audio_ring_buffer_pause_unlocked (GstAudioRingBuffer * buf);
52 static void default_clear_all (GstAudioRingBuffer * buf);
53 static guint default_commit (GstAudioRingBuffer * buf, guint64 * sample,
366 gst_audio_ring_buffer_convert (GstAudioRingBuffer * buf, in gst_audio_ring_buffer_convert() argument
371 GST_OBJECT_LOCK (buf); in gst_audio_ring_buffer_convert()
373 gst_audio_info_convert (&buf->spec.info, src_fmt, src_val, dest_fmt, in gst_audio_ring_buffer_convert()
375 GST_OBJECT_UNLOCK (buf); in gst_audio_ring_buffer_convert()
392 gst_audio_ring_buffer_set_callback (GstAudioRingBuffer * buf, in gst_audio_ring_buffer_set_callback() argument
395 gst_audio_ring_buffer_set_callback_full (buf, cb, user_data, NULL); in gst_audio_ring_buffer_set_callback()
413 gst_audio_ring_buffer_set_callback_full (GstAudioRingBuffer * buf, in gst_audio_ring_buffer_set_callback_full() argument
[all …]
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
Ducbuf.cpp163 ucbuf_fillucbuf( UCHARBUF* buf,UErrorCode* error){ in ucbuf_fillucbuf() argument
174 pTarget = buf->buffer; in ucbuf_fillucbuf()
176 if(buf->currentPos<buf->bufLimit){ in ucbuf_fillucbuf()
177 offset = (int32_t)(buf->bufLimit-buf->currentPos); in ucbuf_fillucbuf()
178 memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar)); in ucbuf_fillucbuf()
184 if(buf->isBuffered){ in ucbuf_fillucbuf()
187 inputRead=T_FileStream_read(buf->in,cbuf,cbufSize-offset); in ucbuf_fillucbuf()
188 buf->remaining-=inputRead; in ucbuf_fillucbuf()
191 cbufSize = T_FileStream_size(buf->in); in ucbuf_fillucbuf()
197 inputRead= T_FileStream_read(buf->in,cbuf,cbufSize); in ucbuf_fillucbuf()
[all …]
/third_party/icu/icu4c/source/tools/toolutil/
Ducbuf.cpp163 ucbuf_fillucbuf( UCHARBUF* buf,UErrorCode* error){ in ucbuf_fillucbuf() argument
174 pTarget = buf->buffer; in ucbuf_fillucbuf()
176 if(buf->currentPos<buf->bufLimit){ in ucbuf_fillucbuf()
177 offset = (int32_t)(buf->bufLimit-buf->currentPos); in ucbuf_fillucbuf()
178 memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar)); in ucbuf_fillucbuf()
184 if(buf->isBuffered){ in ucbuf_fillucbuf()
187 inputRead=T_FileStream_read(buf->in,cbuf,cbufSize-offset); in ucbuf_fillucbuf()
188 buf->remaining-=inputRead; in ucbuf_fillucbuf()
191 cbufSize = T_FileStream_size(buf->in); in ucbuf_fillucbuf()
197 inputRead= T_FileStream_read(buf->in,cbuf,cbufSize); in ucbuf_fillucbuf()
[all …]
/third_party/node/deps/icu-small/source/tools/toolutil/
Ducbuf.cpp163 ucbuf_fillucbuf( UCHARBUF* buf,UErrorCode* error){ in ucbuf_fillucbuf() argument
174 pTarget = buf->buffer; in ucbuf_fillucbuf()
176 if(buf->currentPos<buf->bufLimit){ in ucbuf_fillucbuf()
177 offset = (int32_t)(buf->bufLimit-buf->currentPos); in ucbuf_fillucbuf()
178 memmove(buf->buffer,buf->currentPos,offset* sizeof(char16_t)); in ucbuf_fillucbuf()
184 if(buf->isBuffered){ in ucbuf_fillucbuf()
187 inputRead=T_FileStream_read(buf->in,cbuf,cbufSize-offset); in ucbuf_fillucbuf()
188 buf->remaining-=inputRead; in ucbuf_fillucbuf()
191 cbufSize = T_FileStream_size(buf->in); in ucbuf_fillucbuf()
197 inputRead= T_FileStream_read(buf->in,cbuf,cbufSize); in ucbuf_fillucbuf()
[all …]
/third_party/node/deps/npm/node_modules/string_decoder/lib/
Dstring_decoder.js107 StringDecoder.prototype.write = function (buf) { argument
108 if (buf.length === 0) return '';
112 r = this.fillLast(buf);
119 if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
129 StringDecoder.prototype.fillLast = function (buf) { argument
130 if (this.lastNeed <= buf.length) {
131 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
134 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
135 this.lastNeed -= buf.length;
148 function utf8CheckIncomplete(self, buf, i) { argument
[all …]
/third_party/lwip/src/api/
Dnetbuf.c65 struct netbuf *buf; in netbuf_new() local
67 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF); in netbuf_new()
68 if (buf != NULL) { in netbuf_new()
69 memset(buf, 0, sizeof(struct netbuf)); in netbuf_new()
71 return buf; in netbuf_new()
81 netbuf_delete(struct netbuf *buf) in netbuf_delete() argument
83 if (buf != NULL) { in netbuf_delete()
84 if (buf->p != NULL) { in netbuf_delete()
85 pbuf_free(buf->p); in netbuf_delete()
86 buf->p = buf->ptr = NULL; in netbuf_delete()
[all …]
/third_party/ffmpeg/libavcodec/
Dgolomb.h57 unsigned int buf; in get_ue_golomb() local
60 buf = show_bits_long(gb, 32); in get_ue_golomb()
62 if (buf >= (1 << 27)) { in get_ue_golomb()
63 buf >>= 32 - 9; in get_ue_golomb()
64 skip_bits_long(gb, ff_golomb_vlc_len[buf]); in get_ue_golomb()
66 return ff_ue_golomb_vlc_code[buf]; in get_ue_golomb()
68 int log = 2 * av_log2(buf) - 31; in get_ue_golomb()
73 buf >>= log; in get_ue_golomb()
74 buf--; in get_ue_golomb()
76 return buf; in get_ue_golomb()
[all …]
/third_party/gstreamer/gstplugins_bad/tests/check/libs/
Dplanaraudioadapter.c29 GstBuffer *buf; in generate_buffer() local
40 buf = gst_buffer_new_wrapped (data, buf_sz); in generate_buffer()
41 fail_unless (buf); in generate_buffer()
48 gst_buffer_memset (buf, offsets[c] - dummy_start * bps, 0xBF, in generate_buffer()
51 gst_buffer_memset (buf, offsets[c], c | 0xF0, nsamples * bps); in generate_buffer()
53 gst_buffer_memset (buf, offsets[c] + nsamples * bps, 0xEF, dummy_end * bps); in generate_buffer()
55 gst_buffer_add_audio_meta (buf, info, nsamples, offsets); in generate_buffer()
59 return buf; in generate_buffer()
63 verify_buffer_contents (GstBuffer * buf, GstAudioInfo * info, in verify_buffer_contents() argument
71 gst_audio_buffer_map (&abuf, info, buf, GST_MAP_READ); in verify_buffer_contents()
[all …]
/third_party/toybox/toys/pending/
Dipcs.c45 struct semid_ds *buf; member
52 struct msqid_ds buf; in show_msg_id() local
55 if ((ret = msgctl(TT.id, IPC_STAT, &buf)) < 0) { in show_msg_id()
60 #define ipcperm buf.msg_perm in show_msg_id()
66 (long) buf.msg_cbytes, (long) buf.msg_qbytes, in show_msg_id()
67 (long) buf.msg_qnum, buf.msg_lspid, buf.msg_lrpid); in show_msg_id()
70 buf.msg_stime ? ctime(&buf.msg_stime) : "Not set", in show_msg_id()
71 buf.msg_rtime ? ctime(&buf.msg_rtime) : "Not set", in show_msg_id()
72 buf.msg_ctime ? ctime(&buf.msg_ctime) : "Not set"); in show_msg_id()
78 struct semid_ds buf; in show_sem_id() local
[all …]
/third_party/mesa3d/src/microsoft/compiler/
Ddxil_buffer_test.c31 struct dxil_buffer buf; in init() local
32 dxil_buffer_init(&buf, 2); in init()
33 assert(!buf.buf); in init()
34 assert(!buf.buf_bits); in init()
63 struct dxil_buffer buf; in align() local
64 dxil_buffer_init(&buf, 2); in align()
65 assert_blob_data(&buf, NULL, 0); in align()
67 dxil_buffer_init(&buf, 2); in align()
68 dxil_buffer_emit_bits(&buf, 0xbeef, 16); in align()
69 dxil_buffer_align(&buf); in align()
[all …]
/third_party/pulseaudio/src/pulsecore/
Dcli-command.c65 int (*proc) (pa_core *c, pa_tokenizer*t, pa_strbuf *buf, bool *fail);
84 static int pa_cli_command_exit(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
85 static int pa_cli_command_help(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
86 static int pa_cli_command_modules(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
87 static int pa_cli_command_clients(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
88 static int pa_cli_command_cards(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
89 static int pa_cli_command_sinks(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
90 static int pa_cli_command_sources(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
91 static int pa_cli_command_sink_inputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
92 static int pa_cli_command_source_outputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Dgas.c20 struct wpabuf *buf; in gas_build_req() local
22 buf = wpabuf_alloc(100 + size); in gas_build_req()
23 if (buf == NULL) in gas_build_req()
26 wpabuf_put_u8(buf, WLAN_ACTION_PUBLIC); in gas_build_req()
27 wpabuf_put_u8(buf, action); in gas_build_req()
28 wpabuf_put_u8(buf, dialog_token); in gas_build_req()
30 return buf; in gas_build_req()
51 struct wpabuf *buf; in gas_build_resp() local
53 buf = wpabuf_alloc(100 + size); in gas_build_resp()
54 if (buf == NULL) in gas_build_resp()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
Dgas.c20 struct wpabuf *buf; in gas_build_req() local
22 buf = wpabuf_alloc(100 + size); in gas_build_req()
23 if (buf == NULL) in gas_build_req()
26 wpabuf_put_u8(buf, WLAN_ACTION_PUBLIC); in gas_build_req()
27 wpabuf_put_u8(buf, action); in gas_build_req()
28 wpabuf_put_u8(buf, dialog_token); in gas_build_req()
30 return buf; in gas_build_req()
51 struct wpabuf *buf; in gas_build_resp() local
53 buf = wpabuf_alloc(100 + size); in gas_build_resp()
54 if (buf == NULL) in gas_build_resp()
[all …]
/third_party/ltp/testcases/kernel/sched/nptl/
Dnptl01.c72 void call_mutex_init(pthread_mutex_t * mutex, char *buf, size_t buf_len) in call_mutex_init() argument
78 strerror_r(ret, buf, buf_len)); in call_mutex_init()
82 void call_mutex_lock(pthread_mutex_t * mutex, char *buf, size_t buf_len) in call_mutex_lock() argument
88 strerror_r(ret, buf, buf_len)); in call_mutex_lock()
92 void call_mutex_unlock(pthread_mutex_t * mutex, char *buf, size_t buf_len) in call_mutex_unlock() argument
98 strerror_r(ret, buf, buf_len)); in call_mutex_unlock()
102 void call_cond_init(pthread_cond_t * cond, char *buf, size_t buf_len) in call_cond_init() argument
108 strerror_r(ret, buf, buf_len)); in call_cond_init()
113 char *buf, size_t buf_len) in call_cond_wait() argument
119 strerror_r(ret, buf, buf_len)); in call_cond_wait()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
Dgas_serv.c25 static void gas_serv_write_dpp_adv_proto(struct wpabuf *buf) in gas_serv_write_dpp_adv_proto() argument
27 wpabuf_put_u8(buf, WLAN_EID_ADV_PROTO); in gas_serv_write_dpp_adv_proto()
28 wpabuf_put_u8(buf, 8); /* Length */ in gas_serv_write_dpp_adv_proto()
29 wpabuf_put_u8(buf, 0x7f); in gas_serv_write_dpp_adv_proto()
30 wpabuf_put_u8(buf, WLAN_EID_VENDOR_SPECIFIC); in gas_serv_write_dpp_adv_proto()
31 wpabuf_put_u8(buf, 5); in gas_serv_write_dpp_adv_proto()
32 wpabuf_put_be24(buf, OUI_WFA); in gas_serv_write_dpp_adv_proto()
33 wpabuf_put_u8(buf, DPP_OUI_TYPE); in gas_serv_write_dpp_adv_proto()
34 wpabuf_put_u8(buf, 0x01); in gas_serv_write_dpp_adv_proto()
162 struct wpabuf *buf) in anqp_add_hs_capab_list() argument
[all …]

12345678910>>...263