Home
last modified time | relevance | path

Searched refs:unbind (Results 1 – 25 of 124) sorted by relevance

12345

/external/mesa3d/src/gallium/frontends/clover/core/
Dkernel.hpp52 void unbind();
101 virtual void unbind(exec_context &ctx) = 0;
159 virtual void unbind(exec_context &ctx);
172 virtual void unbind(exec_context &ctx);
186 virtual void unbind(exec_context &ctx);
197 virtual void unbind(exec_context &ctx);
218 virtual void unbind(exec_context &ctx);
229 virtual void unbind(exec_context &ctx);
237 virtual void unbind(exec_context &ctx);
Dkernel.cpp112 exec.unbind(); in launch()
270 unbind(); // Cleanup in bind()
279 kernel::exec_context::unbind() { in unbind() function in kernel::exec_context
281 arg.unbind(*this); in unbind()
439 kernel::scalar_argument::unbind(exec_context &ctx) { in unbind() function in kernel::scalar_argument
488 kernel::global_argument::unbind(exec_context &ctx) { in unbind() function in kernel::global_argument
522 kernel::local_argument::unbind(exec_context &ctx) { in unbind() function in kernel::local_argument
556 kernel::constant_argument::unbind(exec_context &ctx) { in unbind() function in kernel::constant_argument
588 kernel::image_rd_argument::unbind(exec_context &ctx) { in unbind() function in kernel::image_rd_argument
617 kernel::image_wr_argument::unbind(exec_context &ctx) { in unbind() function in kernel::image_wr_argument
[all …]
Dsampler.hpp50 void unbind(command_queue &q, void *st);
/external/linux-kselftest/tools/testing/selftests/media_tests/
Dmedia_dev_allocator.sh20 echo $MDEV > $MDRIVER/unbind;
29 echo $ADEV > $ADRIVER/unbind;
57 echo $MDEV > $MDRIVER/unbind;
71 echo $ADEV > $ADRIVER/unbind;
Dregression_test.txt8 Run bin/unbind loop while ioctls are in progress.
35 device file goes away after unbind, device file name changes. Start the
37 after unbind, /dev/media1 or /dev/media2 could get created. The idea is
38 keep ioctls going while bind/unbind runs.
41 and number to run bind and unbind. Start the bind_unbind.sh
/external/libchrome/base/android/java/src/org/chromium/base/process_launcher/
DChildProcessConnection.java96 void unbind(); in unbind() method
131 public void unbind() { in unbind() method in ChildProcessConnection.ChildServiceConnectionImpl
413 unbind(); in stop()
420 unbind(); in kill()
450 unbind(); in onServiceConnectedOnLauncherThread()
565 protected void unbind() { in unbind() method in ChildProcessConnection
570 mStrongBinding.unbind(); in unbind()
571 mWaivedBinding.unbind(); in unbind()
572 mModerateBinding.unbind(); in unbind()
617 mStrongBinding.unbind(); in removeStrongBinding()
[all …]
/external/python/cpython2/Lib/idlelib/
DMultiCall.py93 def unbind(self, triplet, func): member in _SimpleBinder
96 self.widget.unbind(self.widgetinst, self.sequence, self.handlerid)
101 self.widget.unbind(self.widgetinst, self.sequence, self.handlerid)
221 def unbind(self, triplet, func): member in _ComplexBinder
230 self.widget.unbind(self.widgetinst, seq, id)
331 self.__binders[triplet[1]].unbind(triplet, ei[0])
340 def unbind(self, sequence, funcid=None): member in MultiCallCreator.MultiCall
347 self.__binders[triplet[1]].unbind(triplet, func)
349 return widget.unbind(self, sequence, funcid)
378 self.__binders[triplet[1]].unbind(triplet, func)
[all …]
DAutoCompleteWindow.py386 self.widget.unbind(HIDE_VIRTUAL_EVENT_NAME, self.hideid)
390 self.widget.unbind(KEYPRESS_VIRTUAL_EVENT_NAME, self.keypressid)
394 self.widget.unbind(KEYRELEASE_VIRTUAL_EVENT_NAME, self.keyreleaseid)
396 self.listbox.unbind(LISTUPDATE_SEQUENCE, self.listupdateid)
398 self.autocompletewindow.unbind(WINCONFIG_SEQUENCE, self.winconfigid)
DIOBinding.py160 self.text.unbind("<<open-window-from-file>>", self.__id_open)
161 self.text.unbind("<<save-window>>", self.__id_save)
162 self.text.unbind("<<save-window-as-file>>",self.__id_saveas)
163 self.text.unbind("<<save-copy-of-window-as-file>>", self.__id_savecopy)
164 self.text.unbind("<<print-window>>", self.__id_print)
DCallTipWindow.py118 self.widget.unbind(CHECKHIDE_VIRTUAL_EVENT_NAME, self.checkhideid)
122 self.widget.unbind(HIDE_VIRTUAL_EVENT_NAME, self.hideid)
/external/python/cpython3/Lib/idlelib/
Dmulticall.py98 def unbind(self, triplet, func): member in _SimpleBinder
101 self.widget.unbind(self.widgetinst, self.sequence, self.handlerid)
107 self.widget.unbind(self.widgetinst, self.sequence,
231 def unbind(self, triplet, func): member in _ComplexBinder
241 self.widget.unbind(self.widgetinst, seq, id)
343 self.__binders[triplet[1]].unbind(triplet, ei[0])
352 def unbind(self, sequence, funcid=None): member in MultiCallCreator.MultiCall
359 self.__binders[triplet[1]].unbind(triplet, func)
361 return widget.unbind(self, sequence, funcid)
391 self.__binders[triplet[1]].unbind(triplet, func)
[all …]
Dtooltip.py105 self.anchor_widget.unbind("<Enter>", self._id1)
106 self.anchor_widget.unbind("<Leave>", self._id2) # pragma: no cover
107 self.anchor_widget.unbind("<Button>", self._id3) # pragma: no cover
Dautocomplete_w.py266 acw.unbind(WINCONFIG_SEQUENCE, self.winconfigid)
449 self.autocompletewindow.unbind(HIDE_VIRTUAL_EVENT_NAME, self.hideaid)
450 self.widget.unbind(HIDE_VIRTUAL_EVENT_NAME, self.hidewid)
455 self.widget.unbind(KEYPRESS_VIRTUAL_EVENT_NAME, self.keypressid)
459 self.widget.unbind(KEYRELEASE_VIRTUAL_EVENT_NAME, self.keyreleaseid)
461 self.listbox.unbind(LISTUPDATE_SEQUENCE, self.listupdateid)
464 self.autocompletewindow.unbind(WINCONFIG_SEQUENCE, self.winconfigid)
Diomenu.py42 self.text.unbind("<<open-window-from-file>>", self.__id_open)
43 self.text.unbind("<<save-window>>", self.__id_save)
44 self.text.unbind("<<save-window-as-file>>",self.__id_saveas)
45 self.text.unbind("<<save-copy-of-window-as-file>>", self.__id_savecopy)
46 self.text.unbind("<<print-window>>", self.__id_print)
/external/swiftshader/third_party/marl/src/
Dscheduler_test.cpp35 scheduler->unbind(); in TEST_F()
58 scheduler->unbind(); in TEST_P()
87 scheduler->unbind(); in TEST_P()
141 defer(scheduler->unbind()); in TEST_P()
165 defer(scheduler->unbind()); in TEST_F()
/external/linux-kselftest/tools/testing/selftests/drivers/usb/usbip/
Dusbip_test.sh105 src/usbip unbind -b $busid;
113 src/usbip unbind -b $busid;
/external/swiftshader/third_party/marl/include/marl/
Dblockingcall.h44 Scheduler::unbind(); in call()
69 Scheduler::unbind(); in call()
/external/deqp/modules/gles31/functional/
Des31fFboSRGBWriteControlTests.cpp407 void unbind (void) const;
464 void TestVertexData::unbind (void) const in unbind() function in deqp::gles31::Functional::__anoncaba59090111::TestVertexData
479 void unbind (void) const;
543 void TestTexture2D::unbind (void) const in unbind() function in deqp::gles31::Functional::__anoncaba59090111::TestTexture2D
562 void unbind (void);
642 void TestFramebuffer::unbind (void) in unbind() function in deqp::gles31::Functional::__anoncaba59090111::TestFramebuffer
963 m_framebufferList[idx]->unbind(); in copyFrameBufferTexture()
969 m_framebufferList[fboSrcIdx]->unbind(); in copyFrameBufferTexture()
973 m_framebufferList[fboDstIdx]->unbind(); in copyFrameBufferTexture()
988 m_framebufferList[fboSrcIdx]->unbind(); in copyFrameBufferTexture()
[all …]
/external/swiftshader/third_party/marl/
DREADME.md30 defer(scheduler.unbind()); // Automatically unbind before returning.
154 defer(scheduler.unbind());
177 defer(scheduler->unbind());
186 Always remember to unbind the scheduler before terminating the thread. Forgetting to unbind will re…
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/
DCrossProfileSenderTest.java297 sender.unbind(); in unbind_isNotBound()
308 sender.unbind(); in unbind_callsConnectionListener()
318 sender.unbind(); in unbind_profileBecomesAvailable_doesNotBind()
346 sender.unbind(); in call_isNotBound_throwsUnavailableProfileException()
/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/
DCrossProfileSender.java298 unbind();
368 unbind(); in automaticallyDisconnect()
425 unbind(); // ensure we don't continue trying to connect if we throw an exception in manuallyBind()
487 unbind(); in onBindingAttemptFailed()
510 void unbind() { in unbind() method in CrossProfileSender
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/controller/
DIntentServiceControllerTest.java81 controller.create().bind().unbind(); in unbind_callsUnbindWhilePaused()
87 controller.create().bind().unbind().bind().rebind(); in rebind_callsRebindWhilePaused()
DServiceControllerTest.java82 controller.create().bind().unbind(); in unbind_callsUnbindWhilePaused()
88 controller.create().bind().unbind().bind().rebind(); in rebind_callsRebindWhilePaused()
/external/swiftshader/third_party/marl/examples/
Dtasks_in_tasks.cpp31 defer(scheduler.unbind()); // Automatically unbind before returning. in main()
Dhello_task.cpp32 defer(scheduler.unbind()); // Automatically unbind before returning. in main()

12345