Searched refs:shutdown (Results 251 - 275 of 503) sorted by relevance

<<11121314151617181920>>

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
H A DBluetoothHidFacade.java193 public void shutdown() { method in class:BluetoothHidFacade
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
H A DMediaSessionFacade.java182 public void shutdown() { method in class:MediaSessionFacade
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
H A DTelecomCallFacade.java56 public void shutdown() { method in class:TelecomCallFacade
H A DTelephonyManagerFacade.java1182 public void shutdown() { method in class:TelephonyManagerFacade.StateChangeListener
1208 shutdown();
1214 public void shutdown() { method in class:TelephonyManagerFacade
1216 listener.shutdown();
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
H A DHttpFacade.java205 public void shutdown() { method in class:HttpFacade
H A DWifiScannerFacade.java604 this.shutdown();
611 public void shutdown() { method in class:WifiScannerFacade
/external/smali/baksmali/src/main/java/org/jf/baksmali/
H A Dbaksmali.java171 executor.shutdown();
/external/vogar/src/vogar/target/
H A DTestRunner.java247 profiler.shutdown(profileFile);
/external/boringssl/src/crypto/bio/
H A Dpair.c681 /* similar to shutdown(..., SHUT_WR) */
689 ret = bio->shutdown;
693 bio->shutdown = (int)num;
/external/boringssl/src/crypto/x509/
H A Dx509_lu.c111 if (ctx->method->shutdown != NULL)
112 return ctx->method->shutdown(ctx);
/external/netcat/
H A Dnetcat.c794 shutdown(nfd, SHUT_RD);
809 shutdown(nfd, SHUT_WR);
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DConnectionPoolTest.java131 httpServer.shutdown();
132 spdyServer.shutdown();
/external/opencv3/modules/videoio/src/
H A Dcap_openni2.cpp238 openni::OpenNI::shutdown();
360 openni::OpenNI::shutdown();
/external/selinux/libsepol/tests/policies/test-deps/
H A Dbase-metreq.conf110 shutdown
H A Dbase-notmetreq.conf109 shutdown
H A Dsmall-base.conf110 shutdown
/external/selinux/libsepol/tests/policies/test-linker/
H A Dsmall-base.conf110 shutdown
/external/strace/
H A Dsys_func.h248 extern SYS_FUNC(shutdown);
/external/apache-http/android/src/android/net/http/
H A DAndroidHttpClientConnection.java213 public void shutdown() throws IOException { method in class:AndroidHttpClientConnection
/external/autotest/client/cros/
H A Dhttpd.py210 self._server.shutdown()
/external/boringssl/src/ssl/
H A Dd1_clnt.c192 ssl->shutdown = 0;
H A Dd1_srvr.c194 ssl->shutdown = 0;
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DExperimentingCaliperRun.java186 executor.shutdown();
/external/chromium-trace/catapult/third_party/flot/
H A Djquery.flot.selection.js337 plot.hooks.shutdown.push(function (plot, eventHolder) {
H A Djquery.flot.selection.min.js7 (function($){function init(plot){var selection={first:{x:-1,y:-1},second:{x:-1,y:-1},show:false,active:false};var savedhandlers={};var mouseUpHandler=null;function onMouseMove(e){if(selection.active){updateSelection(e);plot.getPlaceholder().trigger("plotselecting",[getSelection()])}}function onMouseDown(e){if(e.which!=1)return;document.body.focus();if(document.onselectstart!==undefined&&savedhandlers.onselectstart==null){savedhandlers.onselectstart=document.onselectstart;document.onselectstart=function(){return false}}if(document.ondrag!==undefined&&savedhandlers.ondrag==null){savedhandlers.ondrag=document.ondrag;document.ondrag=function(){return false}}setSelectionPos(selection.first,e);selection.active=true;mouseUpHandler=function(e){onMouseUp(e)};$(document).one("mouseup",mouseUpHandler)}function onMouseUp(e){mouseUpHandler=null;if(document.onselectstart!==undefined)document.onselectstart=savedhandlers.onselectstart;if(document.ondrag!==undefined)document.ondrag=savedhandlers.ondrag;selection.active=false;updateSelection(e);if(selectionIsSane())triggerSelectedEvent();else{plot.getPlaceholder().trigger("plotunselected",[]);plot.getPlaceholder().trigger("plotselecting",[null])}return false}function getSelection(){if(!selectionIsSane())return null;if(!selection.show)return null;var r={},c1=selection.first,c2=selection.second;$.each(plot.getAxes(),function(name,axis){if(axis.used){var p1=axis.c2p(c1[axis.direction]),p2=axis.c2p(c2[axis.direction]);r[name]={from:Math.min(p1,p2),to:Math.max(p1,p2)}}});return r}function triggerSelectedEvent(){var r=getSelection();plot.getPlaceholder().trigger("plotselected",[r]);if(r.xaxis&&r.yaxis)plot.getPlaceholder().trigger("selected",[{x1:r.xaxis.from,y1:r.yaxis.from,x2:r.xaxis.to,y2:r.yaxis.to}])}function clamp(min,value,max){return value<min?min:value>max?max:value}function setSelectionPos(pos,e){var o=plot.getOptions();var offset=plot.getPlaceholder().offset();var plotOffset=plot.getPlotOffset();pos.x=clamp(0,e.pageX-offset.left-plotOffset.left,plot.width());pos.y=clamp(0,e.pageY-offset.top-plotOffset.top,plot.height());if(o.selection.mode=="y")pos.x=pos==selection.first?0:plot.width();if(o.selection.mode=="x")pos.y=pos==selection.first?0:plot.height()}function updateSelection(pos){if(pos.pageX==null)return;setSelectionPos(selection.second,pos);if(selectionIsSane()){selection.show=true;plot.triggerRedrawOverlay()}else clearSelection(true)}function clearSelection(preventEvent){if(selection.show){selection.show=false;plot.triggerRedrawOverlay();if(!preventEvent)plot.getPlaceholder().trigger("plotunselected",[])}}function extractRange(ranges,coord){var axis,from,to,key,axes=plot.getAxes();for(var k in axes){axis=axes[k];if(axis.direction==coord){key=coord+axis.n+"axis";if(!ranges[key]&&axis.n==1)key=coord+"axis";if(ranges[key]){from=ranges[key].from;to=ranges[key].to;break}}}if(!ranges[key]){axis=coord=="x"?plot.getXAxes()[0]:plot.getYAxes()[0];from=ranges[coord+"1"];to=ranges[coord+"2"]}if(from!=null&&to!=null&&from>to){var tmp=from;from=to;to=tmp}return{from:from,to:to,axis:axis}}function setSelection(ranges,preventEvent){var axis,range,o=plot.getOptions();if(o.selection.mode=="y"){selection.first.x=0;selection.second.x=plot.width()}else{range=extractRange(ranges,"x");selection.first.x=range.axis.p2c(range.from);selection.second.x=range.axis.p2c(range.to)}if(o.selection.mode=="x"){selection.first.y=0;selection.second.y=plot.height()}else{range=extractRange(ranges,"y");selection.first.y=range.axis.p2c(range.from);selection.second.y=range.axis.p2c(range.to)}selection.show=true;plot.triggerRedrawOverlay();if(!preventEvent&&selectionIsSane())triggerSelectedEvent()}function selectionIsSane(){var minSize=plot.getOptions().selection.minSize;return Math.abs(selection.second.x-selection.first.x)>=minSize&&Math.abs(selection.second.y-selection.first.y)>=minSize}plot.clearSelection=clearSelection;plot.setSelection=setSelection;plot.getSelection=getSelection;plot.hooks.bindEvents.push(function(plot,eventHolder){var o=plot.getOptions();if(o.selection.mode!=null){eventHolder.mousemove(onMouseMove);eventHolder.mousedown(onMouseDown)}});plot.hooks.drawOverlay.push(function(plot,ctx){if(selection.show&&selectionIsSane()){var plotOffset=plot.getPlotOffset();var o=plot.getOptions();ctx.save();ctx.translate(plotOffset.left,plotOffset.top);var c=$.color.parse(o.selection.color);ctx.strokeStyle=c.scale("a",.8).toString();ctx.lineWidth=1;ctx.lineJoin=o.selection.shape;ctx.fillStyle=c.scale("a",.4).toString();var x=Math.min(selection.first.x,selection.second.x)+.5,y=Math.min(selection.first.y,selection.second.y)+.5,w=Math.abs(selection.second.x-selection.first.x)-1,h=Math.abs(selection.second.y-selection.first.y)-1;ctx.fillRect(x,y,w,h);ctx.strokeRect(x,y,w,h);ctx.restore()}});plot.hooks.shutdown.push(function(plot,eventHolder){eventHolder.unbind("mousemove",onMouseMove);eventHolder.unbind("mo (…)

Completed in 937 milliseconds

<<11121314151617181920>>