Searched refs:remove (Results 1 - 25 of 90) sorted by relevance

1234

/gem5/src/arch/alpha/
H A Didle_event.cc49 remove();
/gem5/src/cpu/
H A Dpc_event.hh54 virtual ~PCEvent() { if (queue) remove(); }
62 bool remove();
101 bool remove(PCEvent *event);
126 PCEvent::remove() function in class:PCEvent
129 panic("cannot remove an uninitialized event;");
131 return queue->remove(this);
137 bool remove; member in class:BreakPCEvent
H A Dpc_event.cc55 PCEventQueue::remove(PCEvent *event) function in class:PCEventQueue
133 : PCEvent(q, desc, addr), remove(del)
143 if (remove)
/gem5/ext/ply/test/
H A Dtestlex.py299 os.remove("lextab.py")
303 os.remove("lextab.pyc")
307 os.remove("lextab.pyo")
330 os.remove("lextab.pyo")
340 os.remove("lextab.py")
344 os.remove("lextab.pyc")
348 os.remove("lextab.pyo")
354 os.remove("opt2tab.py")
358 os.remove("opt2tab.pyc")
362 os.remove("opt2ta
[all...]
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_module_registry.h55 void remove( sc_module& );
H A Dsc_attribute.cpp134 // remove attribute by name.
138 sc_attr_cltn::remove( const std::string& name_ ) function in class:sc_core::sc_attr_cltn
152 // remove all attributes
168 // Torsten Maehne: initialization changes to remove warnings.
H A Dsc_module_registry.cpp70 sc_module_registry::remove( sc_module& module_ ) function in class:sc_core::sc_module_registry
82 // remove
154 // Torsten Maehne: initialization changes to remove warnings.
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_hash.h115 int remove(const void* k);
116 int remove(const void* k, void** pk, void** pc);
117 int remove(const void* k, void (*kfree)(void*));
150 void remove();
151 void remove(void (*kfree)(void*));
196 int remove(K k) { return sc_phash_base::remove((const void*) k); } function in class:sc_core::sc_phash
197 int remove(K k, K* pk, C* pc) function in class:sc_core::sc_phash
199 return sc_phash_base::remove((const void*) k, (void**) pk, (void**) pc);
201 int remove( function in class:sc_core::sc_phash
301 int remove(K k) { return sc_phash_base::remove((const void*) k, kfree); } function in class:sc_core::sc_pdhash
302 int remove(K k, K* pk, C* pc) function in class:sc_core::sc_pdhash
338 void remove() { sc_phash_base_iter::remove(((sc_pdhash<K,C>*) table)->kfree); } function in class:sc_core::sc_pdhash_iter
391 int remove(const char* k) { return sc_phash_base::remove((const void*) k, sc_strhash_kfree); } function in class:sc_core::sc_strhash
392 int remove(const char* k, char** pk, C* pc) function in class:sc_core::sc_strhash
428 void remove() { sc_phash_base_iter::remove(sc_strhash_kfree); } function in class:sc_core::sc_strhash_iter
[all...]
H A Dsc_list.h56 void* remove(handle_t h);
87 void remove();
88 void remove(int direction);
122 T remove(handle_t h) function in class:sc_core::sc_plist
124 return (T)sc_plist_base::remove(h);
176 // Torsten Maehne: initialization changes to remove warnings.
H A Dsc_list.cpp185 sc_plist_base::remove( handle_t h ) function in class:sc_core::sc_plist_base
302 sc_plist_base_iter::remove() function in class:sc_core::sc_plist_base_iter
305 lst->remove(ptr);
310 sc_plist_base_iter::remove(int direction) function in class:sc_core::sc_plist_base_iter
313 lst->remove(ptr);
331 // Torsten Maehne: initialization changes to remove warnings.
/gem5/src/sim/
H A Deventq_impl.hh75 remove(event);
95 remove(event);
/gem5/src/systemc/ext/dt/fx/
H A Dscfx_string.hh93 void remove(int);
168 scfx_string::remove(int i) function in class:sc_dt::scfx_string
/gem5/src/base/
H A Dpollevent.hh82 void remove(PollEvent *event);
H A Doutput.cc292 OutputDirectory::remove(const string &name, bool recursive) function in class:OutputDirectory
297 fatal("Attempting to remove file/dir not in output dir\n");
307 if (::remove(fname.c_str()) != 0)
330 remove(name + PATH_SEPARATOR + de->d_name, recursive);
341 if (::remove(fname.c_str()) != 0) {
342 perror("Warning! 'remove' failed. Could not erase directory.");
H A Dtrie.hh156 * the "remove" function takes a Handle as its argument.
285 * @param node A Handle to remove.
289 remove(Handle handle) function in class:Trie
299 panic("Trie: Can't remove root node.\n");
322 remove(parent);
329 * @param key The key to look up and then remove.
333 remove(Key key) function in class:Trie
338 return remove(handle);
343 * efficient than trying to remove elements individually.
/gem5/src/systemc/ext/tlm_core/1/analysis/
H A Danalysis_port.hh53 std::remove(m_interfaces.begin(), m_interfaces.end(), &_if);
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dscfx_string.h95 void remove( int );
193 scfx_string::remove( int i ) function in class:sc_dt::scfx_string
/gem5/src/systemc/tests/systemc/kernel/sc_attribute/test02/
H A Dtest02.cpp102 sc_attr_base *pk = att_cltn.remove("a1");
107 sc_attr_base *pn = att_cltn.remove("a5");
/gem5/ext/googletest/googletest/test/
H A Dgtest_xml_outfiles_test.py80 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml"))
84 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml"))
109 # allow both names in the following code. We should remove this
/gem5/src/mem/ruby/structures/
H A DPersistentTable.cc82 entry.m_starving.remove(unlocker);
83 entry.m_marked.remove(unlocker);
84 entry.m_request_to_write.remove(unlocker);
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_export.cpp54 simcontext()->get_export_registry()->remove(this);
185 sc_export_registry::remove( sc_export_base* export_ ) function in class:sc_core::sc_export_registry
198 // remove
272 // Torsten Maehne: initialization changes to remove warnings.
/gem5/ext/dsent/libutil/
H A DMap.h67 void remove(const String& key_);
69 void remove(Iterator it);
161 template<class T> void Map<T>::remove(const String& key_) function in class:LibUtil::Map
167 template<class T> void Map<T>::remove(Iterator it) function in class:LibUtil::Map
/gem5/src/mem/ruby/common/
H A DNetDest.hh55 void remove(MachineID oldElement);
/gem5/ext/systemc/src/tlm_core/tlm_1/tlm_analysis/
H A Dtlm_analysis_port.h51 = std::remove( m_interfaces.begin(), m_interfaces.end(), &_if );
/gem5/src/base/vnc/
H A Dvncinput.cc66 // remove existing frame output directory if it exists, then create a
69 simout.remove(FRAME_OUTPUT_SUBDIR, true);

Completed in 27 milliseconds

1234