/external/wpa_supplicant/ |
eap_peap.c | 113 struct eap_method_type *methods = NULL, *_methods; local 143 methods, 144 num_methods * sizeof(*methods)); 146 os_free(methods); 151 methods = _methods; 152 methods[num_methods - 1].vendor = vendor; 153 methods[num_methods - 1].method = method; 159 data->phase2_types = methods;
|
/frameworks/base/core/java/android/text/method/ |
MultiTapKeyListener.java | 215 KeyListener[] methods = content.getSpans(0, content.length(), local 217 for (Object method : methods) {
|
/frameworks/base/core/jni/ |
BindTest.cpp | 210 static VMMethod methods[] = { variable 229 jamvm_registerClass("BindTest", methods);
|
/frameworks/base/test-runner/src/android/test/suitebuilder/ |
TestGrouping.java | 41 * or entire packages. By default sub-packages are included recursively, but methods are 81 List<Method> methods = Arrays.asList(testCaseClass.getMethods()); local 82 return select(methods, new TestMethodPredicate());
|
/packages/apps/Exchange/tests/src/com/android/exchange/ |
EasSyncServiceTests.java | 28 import org.apache.http.client.methods.HttpPost; 29 import org.apache.http.client.methods.HttpRequestBase;
|
/external/chromium/chrome/common/extensions/docs/build/ |
directory.py | 60 """ Represents the list of API methods contained in extension_api.json """ 81 methods and 'event' for events. 92 Given a specific API module, returns a dict of methods or events mapped to 98 methods to parse, and what kind of documentation URL to generate. 101 A dict of extension methods mapped to file and hash URL parts for the 113 methods = [] 121 methods.extend(module[key]) 122 for method in methods: 141 events and methods for every module, mapped to relative documentation links. 144 A dict of methods/events => partial doc links for every module [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
wps_registrar.c | 296 u16 methods; local 299 methods = reg->wps->config_methods & ~WPS_CONFIG_PUSHBUTTON; 301 methods |= WPS_CONFIG_PUSHBUTTON; 303 methods = reg->sel_reg_config_methods_override; 304 wpa_printf(MSG_DEBUG, "WPS: * Selected Registrar Config Methods (%x)", 305 methods); 308 wpabuf_put_be16(msg, methods); 316 u16 methods; local 317 methods = 0; 318 wpa_printf(MSG_DEBUG, "WPS: * Config Methods (%x)", methods) 329 u16 methods; local 686 u16 methods; local [all...] |
/frameworks/base/test-runner/src/android/test/ |
TestRunner.java | 332 Method[] methods = getAllTestMethods(clazz); local 333 for (Method m : methods) { 607 Method[] methods = getAllTestMethods(clazz); local 609 String[] onScreenTestNames = new String[methods.length]; 611 for (Method m : methods) {
|
/libcore/luni/src/main/java/java/lang/ |
Class.java | 693 * Returns an array containing {@code Method} objects for all methods 695 * methods or if this {@code Class} represents an array class, a primitive 698 * @return an array with the methods declared in the class represented by 707 * Returns the list of methods without performing any security checks 708 * first. If no methods exist, an empty array is returned. 937 List<Method> methods = new ArrayList<Method>(); local [all...] |
/sdk/traceview/src/com/android/traceview/ |
DmTraceReader.java | 434 if (line.equals("*methods")) { 551 // Sort the methods into decreasing inclusive time 553 MethodData[] methods; local 554 methods = mv.toArray(new MethodData[mv.size()]); 555 Arrays.sort(methods, new Comparator<MethodData>() { 565 // Count the number of methods with non-zero inclusive time 567 for (MethodData md : methods) { 573 // Copy the methods with non-zero time 576 for (MethodData md : methods) {
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
peers.cpp | 1256 * (MAC addr, UUID-E, pri dev type, config methods, 1630 int methods = var.toInt(); local [all...] |
/cts/tools/dx-tests/src/util/ |
CollectAllTests.java | 63 * a map. key: fully qualified class name, value: a list of test methods for 127 // E, then VFE test methods. 128 // so we need x Main_xxxx methods in a package, and x entries in the 151 // TODO and for methods: take Nx, then Bx, then Ex, then VFEx 165 System.out.println("collected "+testMethodsCnt+" test methods in "+testClassCnt+" junit test classes"); 183 List<String> methods = entry.getValue(); 184 Collections.sort(methods, new Comparator<String>() { 190 for (String method : methods) {
|
/dalvik/dx/src/com/android/dx/dex/cf/ |
CfTranslator.java | 217 * Processes the methods of the given class. 227 MethodList methods = cf.getMethods(); local 228 int sz = methods.size(); 231 Method one = methods.get(i); 244 // There's no code for native or abstract methods. 307 * ...but only native methods are actually allowed to be
|
/external/wpa_supplicant_8/src/wps/ |
wps_attr_build.c | 91 int wps_build_config_methods(struct wpabuf *msg, u16 methods) 93 wpa_printf(MSG_DEBUG, "WPS: * Config Methods (%x)", methods); 96 wpabuf_put_be16(msg, methods);
|
/dalvik/vm/native/ |
java_lang_Class.cpp | 281 ArrayObject* methods; local 283 methods = dvmGetDeclaredMethods(clazz, publicOnly); 284 dvmReleaseTrackedAlloc((Object*) methods, NULL); 286 RETURN_PTR(methods);
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
SimpleWikiHelper.java | 23 import org.apache.http.client.methods.HttpGet; 41 * Helper methods to simplify talking with and parsing responses from a
|
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/ |
SimpleWikiHelper.java | 23 import org.apache.http.client.methods.HttpGet; 41 * Helper methods to simplify talking with and parsing responses from a
|
/development/tools/emulator/system/lights/ |
lights_qemu.c | 155 * module methods 212 .methods = &lights_module_methods,
|
/device/samsung/tuna/liblight/ |
lights.c | 221 .methods = &lights_module_methods,
|
/external/apache-http/src/org/apache/http/client/protocol/ |
RequestAddCookies.java | 49 import org.apache.http.client.methods.HttpUriRequest;
|
/external/bluetooth/bluez/gdbus/ |
gdbus.h | 115 const GDBusMethodTable *methods,
|
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/ |
HttpMethodResponse.java | 32 import org.apache.http.client.methods.HttpRequestBase;
|
/external/wpa_supplicant_8/src/ap/ |
ap_config.c | 587 wsc_enrollee.methods[0].method = eap_server_get_type( 588 "WSC", &wsc_enrollee.methods[0].vendor); 596 wsc_registrar.methods[0].method = eap_server_get_type( 597 "WSC", &wsc_registrar.methods[0].vendor);
|
/frameworks/base/core/jni/android/graphics/ |
Matrix.cpp | 361 static JNINativeMethod methods[] = { member in namespace:android 408 int result = AndroidRuntime::registerNativeMethods(env, "android/graphics/Matrix", methods, 409 sizeof(methods) / sizeof(methods[0]));
|
Path.cpp | 267 static JNINativeMethod methods[] = { member in namespace:android 308 int result = AndroidRuntime::registerNativeMethods(env, "android/graphics/Path", methods, 309 sizeof(methods) / sizeof(methods[0]));
|