Home
last modified time | relevance | path

Searched refs:sig_buf (Results 1 – 2 of 2) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl/src/
Dsign.rs366 sig_buf: &mut [u8], in sign_oneshot()
370 let mut sig_len = sig_buf.len(); in sign_oneshot()
373 sig_buf.as_mut_ptr() as *mut _, in sign_oneshot()
387 let mut sig_buf = vec![0; self.len()?]; in sign_oneshot_to_vec() localVariable
388 let len = self.sign_oneshot(&mut sig_buf, data_buf)?; in sign_oneshot_to_vec()
390 sig_buf.truncate(len); in sign_oneshot_to_vec()
391 Ok(sig_buf) in sign_oneshot_to_vec()
/third_party/pulseaudio/src/pulsecore/
Dprotocol-dbus.c681 pa_strbuf *sig_buf = NULL; in extract_method_signatures() local
689 sig_buf = pa_strbuf_new(); in extract_method_signatures()
693 pa_strbuf_puts(sig_buf, handler->arguments[i].type); in extract_method_signatures()
696 … pa_hashmap_put(signatures, (char *) handler->method_name, pa_strbuf_to_string_free(sig_buf)); in extract_method_signatures()