HomeSort by relevance Sort by last modified time
    Searched refs:Interface (Results 51 - 75 of 140) sorted by null

1 23 4 5 6

  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-test.py 11 WPAS_DBUS_INTERFACES_INTERFACE = "fi.epitest.hostap.WPASupplicant.Interface"
27 print "Usage: wpas-test.py <interface>"
34 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE)
36 # See if wpa_supplicant already knows about this interface
41 if str(exc) != "wpa_supplicant knows nothing about this interface.":
46 if str(exc) != "wpa_supplicant already controls this interface.":
50 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE)
59 net = dbus.Interface(net_obj, WPAS_DBUS_BSSID_INTERFACE)
86 # Should fail here with unknown interface error
wpas-dbus-new-wps.py 13 WPAS_DBUS_INTERFACES_INTERFACE = "fi.w1.wpa_supplicant1.Interface"
14 WPAS_DBUS_WPS_INTERFACE = "fi.w1.wpa_supplicant1.Interface.WPS"
46 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE)
73 wps = dbus.Interface(if_obj, WPAS_DBUS_WPS_INTERFACE)
wpas-dbus-new.py 13 WPAS_DBUS_INTERFACES_INTERFACE = "fi.w1.wpa_supplicant1.Interface"
42 net = dbus.Interface(net_obj, WPAS_DBUS_BSS_INTERFACE)
106 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE)
122 # See if wpa_supplicant already knows about this interface
140 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE)
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
Parent.java 5 public static interface Interface
  /external/bluetooth/bluez/test/
test-health 38 interface_keyword="interface")
50 hdp_manager = dbus.Interface(bus.get_object("org.bluez", "/org/bluez"),
132 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
155 adapter = dbus.Interface(bus.get_object("org.bluez", select),
182 device = dbus.Interface(bus.get_object("org.bluez", select),
test-manager 22 manager = dbus.Interface(bus.get_object('org.bluez', '/'),
simple-agent 88 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
96 adapter = dbus.Interface(bus.get_object("org.bluez", path),
test-adapter 10 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
25 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
  /external/dbus/test/name-test/
test-wait-for-echo.py 35 i = dbus.Interface(o, 'org.freedesktop.TestSuite')
  /external/srec/shared/include/
IntArrayListImpl.h 34 * Interface functions that must be implemented.
36 IntArrayList Interface;
HashMapImpl.h 36 * Interface functions that must be implemented.
38 HashMap Interface;
Int8ArrayListImpl.h 34 * Interface functions that must be implemented.
36 Int8ArrayList Interface;
  /external/srec/srec/AcousticState/include/
SR_AcousticStateImpl.h 39 * Interface functions that must be implemented.
41 SR_AcousticState Interface;
  /external/srec/srec/Nametag/include/
SR_NametagsImpl.h 38 * Interface functions that must be implemented.
40 SR_Nametags Interface;
  /external/srec/srec/Semproc/include/
SR_SemanticProcessorImpl.h 45 * Interface functions that must be implemented.
47 SR_SemanticProcessor Interface;
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.ml 1 (*===-- llvm_bitwriter.ml - LLVM Ocaml Interface ----------------*- C++ -*-===*
10 * This interface provides an ocaml API for the LLVM intermediate
  /external/srec/shared/src/
SessionTypeImpl.c 41 ESR_SessionType* Interface;
50 Interface = NEW(ESR_SessionType, MTAG);
51 if (Interface == NULL)
64 Interface->addListener = &ESR_SessionTypeAddListenerImpl;
65 Interface->contains = &ESR_SessionTypeContainsImpl;
66 Interface->convertToBool = &ESR_SessionTypeConvertToBoolImpl;
67 Interface->convertToFloat = &ESR_SessionTypeConvertToFloatImpl;
68 Interface->convertToInt = &ESR_SessionTypeConvertToIntImpl;
69 Interface->convertToUint16_t = &ESR_SessionTypeConvertToUint16_tImpl;
70 Interface->convertToSize_t = &ESR_SessionTypeConvertToSize_tImpl
    [all...]
  /external/srec/srec/Vocabulary/src/
VocabularyImpl.c 162 impl->Interface.save = &SR_VocabularySaveImpl;
163 impl->Interface.getPronunciation = &SR_VocabularyGetPronunciationImpl;
164 impl->Interface.getLanguage = &SR_VocabularyGetLanguageImpl;
165 impl->Interface.destroy = &SR_VocabularyDestroyImpl;
237 SR_Vocabulary* Interface;
241 CHK(rc, SR_VocabularyCreateImpl(&Interface));
242 impl = (SR_VocabularyImpl*) Interface;
254 *self = Interface;
257 Interface->destroy(Interface);
    [all...]
  /external/srec/srec/Grammar/src/
SR_GrammarImpl.c 48 impl->Interface.addNametagToSlot = &SR_Grammar_AddNametagToSlot;
49 impl->Interface.addWordToSlot = &SR_Grammar_AddWordToSlot;
50 impl->Interface.checkParse = &SR_Grammar_CheckParse;
51 impl->Interface.compile = &SR_Grammar_Compile;
52 impl->Interface.destroy = &SR_Grammar_Destroy;
53 impl->Interface.getParameter = &SR_Grammar_GetParameter;
54 impl->Interface.getSize_tParameter = &SR_Grammar_GetSize_tParameter;
55 impl->Interface.resetAllSlots = &SR_Grammar_ResetAllSlots;
56 impl->Interface.save = &SR_Grammar_Save;
57 impl->Interface.setDispatchFunction = &SR_Grammar_SetDispatchFunction
    [all...]
  /external/srec/srec/Nametag/src/
NametagsImpl.c 47 impl->Interface.load = &SR_NametagsLoadImpl;
48 impl->Interface.save = &SR_NametagsSaveImpl;
49 impl->Interface.add = &SR_NametagsAddImpl;
50 impl->Interface.remove = &SR_NametagsRemoveImpl;
51 impl->Interface.getSize = &SR_NametagsGetSizeImpl;
52 impl->Interface.get = &SR_NametagsGetImpl;
53 impl->Interface.getAtIndex = &SR_NametagsGetAtIndexImpl;
54 impl->Interface.contains = &SR_NametagsContainsImpl;
55 impl->Interface.destroy = &SR_NametagsDestroyImpl;
68 impl->Interface.destroy(&impl->Interface)
    [all...]
  /external/expat/amiga/
expat_lib.c 152 DropInterface((struct Interface *)IDOS);
221 DropInterface((struct Interface *)IUtility);
223 DropInterface((struct Interface *)IDOS);
  /external/srec/portable/src/
PFileImpl.c 48 impl->Interface.destroy = &PFileDestroyImpl;
49 impl->Interface.getFilename = &PFileGetFilenameImpl;
50 impl->Interface.vfprintf = &PFileVfprintfImpl;
  /external/srec/portable/src/UNIX/
PFileSystemUNIXImpl.c 78 CHKLOG(rc, PtrdMonitorDestroy(impl->Interface.lock));
79 impl->Interface.lock = ((PANSIFileImpl*) PSTDOUT)->Interface.lock;
  /external/srec/srec/Recognizer/src/
RecognizerResultImpl.c 46 impl->Interface.getWaveform = &SR_RecognizerResult_GetWaveform;
47 impl->Interface.getSize = &SR_RecognizerResult_GetSize;
48 impl->Interface.getKeyCount = &SR_RecognizerResult_GetKeyCount;
49 impl->Interface.getKeyList = &SR_RecognizerResult_GetKeyList;
50 impl->Interface.getValue = &SR_RecognizerResult_GetValue;
51 impl->Interface.getLocale = &SR_RecognizerResult_GetLocale;
  /external/srec/portable/include/
ArrayListImpl.h 34 * Interface functions that must be implemented.
36 ArrayList Interface;

Completed in 864 milliseconds

1 23 4 5 6