Home
last modified time | relevance | path

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

/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_const_eval/src/interpret/intrinsics/
H A Dcaller_location.rs85 self.allocate_str(&filename.as_str(), MemoryKind::CallerLocation, Mutability::Not) in alloc_caller_location()
90 self.allocate_str("<redacted>", MemoryKind::CallerLocation, Mutability::Not) in alloc_caller_location()
/dports/lang/rust/rustc-1.58.1-src/src/tools/miri/src/shims/
H A Dbacktrace.rs129 let name_alloc = this.allocate_str(&name, MiriMemoryKind::Rust.into(), Mutability::Mut); in handle_miri_resolve_frame()
131 this.allocate_str(&filename, MiriMemoryKind::Rust.into(), Mutability::Mut); in handle_miri_resolve_frame()
H A Dpanic.rs173 let msg = this.allocate_str(msg, MiriMemoryKind::Machine.into(), Mutability::Not); in start_panic()
/dports/www/trafficserver/trafficserver-9.1.1/proxy/hdrs/unit_tests/
H A Dtest_HdrHeap.cc116 char *str = heap->allocate_str(1); // this will force a coalesce.
/dports/www/trafficserver/trafficserver-9.1.1/proxy/hdrs/
H A DHdrHeap.h185 char *allocate_str(int nbytes);
245 char *new_str = this->allocate_str(length); in localize()
H A DHdrHeap.cc234 HdrHeap::allocate_str(int nbytes) in allocate_str() function in HdrHeap
310 char *new_str = allocate_str(nbytes); in duplicate_str()
H A DURL.cc633 buf = heap->allocate_str(len + 1); in url_string_get_ref()
664 buf2 = heap->allocate_str(len + 1); in url_string_get()
H A DMIME.cc1920 new_value = heap->allocate_str(new_value_len); in mime_field_value_str_from_strlist()
2236 new_str = heap->allocate_str(new_length); in mime_field_value_append()
/dports/www/trafficserver/trafficserver-9.1.1/doc/developer-guide/core-architecture/
H A Dheap.en.rst107 .. function:: char * allocate_str(int bytes)
177 Storage for a string is allocated by :func:`HdrHeap::allocate_str`. If the current amount of dead
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_const_eval/src/interpret/
H A Dplace.rs992 pub fn allocate_str( in allocate_str() function