/external/parameter-framework/asio-1.10.6/include/asio/ |
connect.hpp | 34 * endpoints. It does this by repeated calls to the socket's @c connect member 41 * @param begin An iterator pointing to the start of a sequence of endpoints. 66 * endpoints. It does this by repeated calls to the socket's @c connect member 73 * @param begin An iterator pointing to the start of a sequence of endpoints. 104 * endpoints. It does this by repeated calls to the socket's @c connect member 111 * @param begin An iterator pointing to the start of a sequence of endpoints. 113 * @param end An iterator pointing to the end of a sequence of endpoints. 136 * endpoints. It does this by repeated calls to the socket's @c connect member 143 * @param begin An iterator pointing to the start of a sequence of endpoints. 145 * @param end An iterator pointing to the end of a sequence of endpoints [all...] |
/development/samples/USB/AdbTest/ |
_index.html | 12 <li>Asynchronous IO on bulk endpoints</li>
|
/external/autotest/client/site_tests/security_SessionManagerDbusEndpoints/ |
control | 8 Tests that SessionManager D-Bus endpoints cannot be abused.
|
/external/libmojo/mojo/public/cpp/bindings/ |
interface_endpoint_controller.h | 13 // endpoints.
|
sync_handle_watcher.h | 25 // also need master interface endpoints to continue dispatching messages for 26 // associated endpoints on different threads.
|
associated_group.h | 17 // AssociatedGroup refers to all the interface endpoints running at one end of a
|
/external/skia/experimental/svg/model/ |
SkSVGLine.h | 37 // resolve and return the two endpoints
|
/external/skqp/experimental/svg/model/ |
SkSVGLine.h | 37 // resolve and return the two endpoints
|
/frameworks/base/core/java/android/hardware/usb/ |
UsbEndpoint.java | 24 * Endpoints are the channels for sending and receiving data over USB. 25 * Typically bulk endpoints are used for sending non-trivial amounts of data. 26 * Interrupt endpoints are used for sending small amounts of data, typically events, 30 * Isochronous endpoints are currently unsupported.
|
/external/tensorflow/tensorflow/core/common_runtime/ |
build_graph_options.cc | 23 string rv = "Feed endpoints: "; 27 strings::StrAppend(&rv, "\nFetch endpoints: ");
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/ |
basic_endpoint.hpp | 174 /// Compare two endpoints for equality. 181 /// Compare two endpoints for inequality. 188 /// Compare endpoints for ordering. 195 /// Compare endpoints for ordering. 202 /// Compare endpoints for ordering. 209 /// Compare endpoints for ordering.
|
/external/icu/icu4c/source/i18n/ |
number_patternstring.cpp | 35 const Endpoints &endpoints = getEndpoints(flags); local 36 if (index < 0 || index >= endpoints.end - endpoints.start) { 39 return pattern.charAt(endpoints.start + index); 46 int32_t ParsedPatternInfo::getLengthFromEndpoints(const Endpoints &endpoints) { 47 return endpoints.end - endpoints.start; 51 const Endpoints &endpoints = getEndpoints(flags) local [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/ |
UnivariateRealSolverImpl.java | 143 * where one of the endpoints is itself a root.</p> 153 * @throws IllegalArgumentException if min > max or the endpoints do not 166 * where one of the endpoints is itself a root.</p> 222 * Returns true iff the function takes opposite signs at the endpoints. 228 * @throws FunctionEvaluationException if an error occurs evaluating the function at the endpoints 251 * Verifies that the endpoints specify an interval, 284 * Verifies that the endpoints specify an interval and the function takes 285 * opposite signs at the endpoints, throws IllegalArgumentException if not 291 * @throws FunctionEvaluationException if an error occurs evaluating the function at the endpoints
|
UnivariateRealSolver.java | 65 * where one of the endpoints is itself a root.</p> 73 * @throws IllegalArgumentException if min > max or the endpoints do not 85 * where one of the endpoints is itself a root.</p> 94 * @throws IllegalArgumentException if min > max or the endpoints do not 107 * where one of the endpoints is itself a root.</p> 129 * where one of the endpoints is itself a root.</p>
|
/test/vti/test_serving/gae/webapp/src/endpoint/ |
job_queue.py | 14 """Job Queue Info APIs implemented using Google Cloud Endpoints.""" 17 import endpoints 26 JOB_QUEUE_RESOURCE = endpoints.ResourceContainer(model.JobMessage) 32 @endpoints.api(name='job_queue', version='v1') 36 @endpoints.method( 117 @endpoints.method(
|
/frameworks/base/services/tests/servicestests/assets/KeyStoreRecoveryControllerTest/xml/ |
valid-cert-file.xml | 90 <endpoints> 149 </endpoints>
|
/frameworks/base/services/usb/java/com/android/server/usb/descriptors/tree/ |
UsbDescriptorsInterfaceNode.java | 73 // Endpoints 75 canvas.writeParagraph("Endpoints", false);
|
/external/llvm/lib/IR/ |
Metadata.cpp | 922 static bool tryMergeRange(SmallVectorImpl<ConstantInt *> &EndPoints, 925 unsigned Size = EndPoints.size(); 926 APInt LB = EndPoints[Size - 2]->getValue(); 927 APInt LE = EndPoints[Size - 1]->getValue(); 932 EndPoints[Size - 2] = 934 EndPoints[Size - 1] = 941 static void addRange(SmallVectorImpl<ConstantInt *> &EndPoints, 943 if (!EndPoints.empty()) 944 if (tryMergeRange(EndPoints, Low, High)) 947 EndPoints.push_back(Low) [all...] |
/external/libmojo/mojo/public/interfaces/bindings/ |
interface_control_messages.mojom | 9 // interface endpoints at both sides.
|
pipe_control_messages.mojom | 10 // that they can coordinate to manage interface endpoints.
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
ConcurrentSkipListSetTest.java | 831 int[] endpoints = new int[2]; local 832 endpoints[0] = min + rnd.nextInt(rangeSize); 833 endpoints[1] = min + rnd.nextInt(rangeSize); 834 Arrays.sort(endpoints); 839 endpoints[0], lowIncl, endpoints[1], highIncl); 841 bashSubSet(sm, endpoints[0] + (lowIncl ? 0 : 1), 842 endpoints[1] - (highIncl ? 0 : 1), true, bs); 844 bashSubSet(sm.descendingSet(), endpoints[0] + (lowIncl ? 0 : 1), 845 endpoints[1] - (highIncl ? 0 : 1), false, bs) [all...] |
TreeSetTest.java | 833 int[] endpoints = new int[2]; local 834 endpoints[0] = min + rnd.nextInt(rangeSize); 835 endpoints[1] = min + rnd.nextInt(rangeSize); 836 Arrays.sort(endpoints); 841 endpoints[0], lowIncl, endpoints[1], highIncl); 843 bashSubSet(sm, endpoints[0] + (lowIncl ? 0 : 1), 844 endpoints[1] - (highIncl ? 0 : 1), true); 846 bashSubSet(sm.descendingSet(), endpoints[0] + (lowIncl ? 0 : 1), 847 endpoints[1] - (highIncl ? 0 : 1), false) [all...] |
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/nettest/ |
conntest_test.go | 37 // Start a connection between two endpoints.
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/net/nettest/ |
conntest_test.go | 37 // Start a connection between two endpoints.
|
/external/adhd/cras/src/server/ |
cras_bt_endpoint.c | 517 /* Available endpoints */ 518 static struct cras_bt_endpoint *endpoints; variable in typeref:struct:cras_bt_endpoint 525 DL_FOREACH(endpoints, endpoint) 542 DL_APPEND(endpoints, endpoint); 578 DL_DELETE(endpoints, endpoint); 585 DL_FOREACH(endpoints, endpoint) 593 DL_FOREACH(endpoints, endpoint) {
|