HomeSort by relevance Sort by last modified time
    Searched refs:to_remove (Results 1 - 17 of 17) sorted by null

  /external/curl/tests/unit/
unit1300.c 64 struct curl_llist_element *to_remove; variable in typeref:struct:curl_llist_element
195 to_remove = llist->head->next;
196 abort_unless(to_remove, "to_remove is NULL");
197 element_next = to_remove->next;
198 element_prev = to_remove->prev;
199 Curl_llist_remove(llist, to_remove, NULL);
216 to_remove = llist->tail;
217 element_prev = to_remove->prev;
218 Curl_llist_remove(llist, to_remove, NULL)
    [all...]
  /external/v8/src/
cancelable-task.cc 90 std::set<uint32_t> to_remove; local
98 to_remove.insert(reinterpret_cast<Cancelable*>(p->value)->id());
102 for (auto id : to_remove) {
105 to_remove.clear();
  /system/connectivity/shill/net/
mock_rtnl_handler.h 36 MOCK_METHOD1(RemoveListener, void(RTNLListener* to_remove));
rtnl_handler.h 75 virtual void RemoveListener(RTNLListener* to_remove);
rtnl_handler.cc 142 void RTNLHandler::RemoveListener(RTNLListener* to_remove) {
144 if (to_remove == *it) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/
hmm_base.c 28 ptr_record *to_remove) {
29 to_remove->prev->next = to_remove->next;
31 if (to_remove->next)
32 to_remove->next->prev = to_remove->prev;
  /external/autotest/server/hosts/
gce_host.py 56 def _modify_ssh_keys(self, to_add, to_remove):
61 @param to_remove: a list of enties to be removed.
66 new_key_set = (key_set | set(to_add)) - set(to_remove)
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.c 172 int to_remove = (max_size < max_entries) * max_entries/4; local
174 to_remove += hash_size - max_size;
175 while (to_remove) {
181 --to_remove;
cso_context.c 217 int to_remove = (max_size < max_entries) * max_entries/4; local
220 to_remove += hash_size - max_size;
221 while (to_remove) {
227 --to_remove;
    [all...]
  /external/v8/src/compiler/
live-range-separator.cc 150 int to_remove = range->vreg(); local
152 data()->live_ranges()[to_remove] = nullptr;
  /external/autotest/site_utils/
backup_mysql_db.py 274 to_remove = ordered_listing[:-self._number_to_keep]
276 for artifact in to_remove:
  /art/compiler/optimizing/
gvn_test.cc 65 HInstruction* to_remove = block->GetLastInstruction(); local
99 ASSERT_EQ(to_remove->GetBlock(), block);
108 ASSERT_TRUE(to_remove->GetBlock() == nullptr);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cfghooks.h 191 vec<edge> *to_remove,
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/
setup.py 763 to_remove = []
767 to_remove.append(dirname)
769 for dirname in to_remove:
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/
setup.py 763 to_remove = []
767 to_remove.append(dirname)
769 for dirname in to_remove:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
connection.py 293 to_remove = []
297 to_remove.append(host)
298 for host in to_remove:
    [all...]
  /external/webrtc/talk/app/webrtc/
peerconnection_unittest.cc 264 auto to_remove = it++; variable
265 removed_fake_video_renderers_.push_back(std::move(to_remove->second));
266 fake_video_renderers_.erase(to_remove);
    [all...]

Completed in 396 milliseconds