Searched defs:interface (Results 1 - 25 of 171) sorted by last modified time

1234567

/external/wpa_supplicant_8/hostapd/
H A Dctrl_iface.c2 * hostapd / UNIX domain socket -based control interface
1137 wpa_printf(MSG_ERROR, "Enabling of interface failed");
1147 wpa_printf(MSG_ERROR, "Reloading of interface failed");
1157 wpa_printf(MSG_ERROR, "Disabling of interface failed");
1624 "interface directory.");
1648 * Android is using umask 0077 which would leave the control interface
1767 wpa_printf(MSG_DEBUG, "Control interface "
1792 wpa_printf(MSG_ERROR, "Adding interface %s failed", buf);
1803 wpa_printf(MSG_ERROR, "Removing interface %s failed", buf);
1878 static char * hostapd_global_ctrl_iface_path(struct hapd_interfaces *interface) argument
1899 hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface) argument
[all...]
H A Dctrl_iface.h2 * hostapd / UNIX domain socket -based control interface
15 int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface);
16 void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface);
28 hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface) argument
34 hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface) argument
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new.c2 * WPA Supplicant / dbus-based control interface
47 "interface=org.freedesktop.DBus,member=NameOwnerChanged";
124 * wpas_dbus_signal_interface - Send a interface related event signal
125 * @wpa_s: %wpa_supplicant network interface data
129 * Notify listeners about event related with interface
140 /* Do nothing if the control interface is not turned on */
172 * wpas_dbus_signal_interface_added - Send a interface created signal
173 * @wpa_s: %wpa_supplicant network interface data
175 * Notify listeners about creating new interface
184 * wpas_dbus_signal_interface_removed - Send a interface remove
3409 wpas_dbus_signal_peer(struct wpa_supplicant *wpa_s, const u8 *dev_addr, const char *interface, const char *sig_name) argument
[all...]
H A Ddbus_new_helpers.c2 * WPA Supplicant / dbus-based control interface
24 const char *interface, void *user_data, DBusError *error)
30 /* Only return properties for the requested D-Bus interface */
31 if (os_strncmp(dsc->dbus_interface, interface,
66 * @interface: interface name which properties will be returned
71 * of those, which are readable and which interface matches interface
75 static DBusMessage * get_all_properties(DBusMessage *message, char *interface, argument
101 interface, obj_ds
21 fill_dict_with_properties( DBusMessageIter *dict_iter, const struct wpa_dbus_property_desc *props, const char *interface, void *user_data, DBusError *error) argument
149 properties_get_all(DBusMessage *message, char *interface, struct wpa_dbus_object_desc *obj_dsc) argument
234 properties_get_or_set(DBusMessage *message, DBusMessageIter *iter, char *interface, struct wpa_dbus_object_desc *obj_dsc) argument
285 char *interface; local
608 put_changed_properties( const struct wpa_dbus_object_desc *obj_dsc, const char *interface, DBusMessageIter *dict_iter, int clear_changed) argument
661 do_send_prop_changed_signal( DBusConnection *con, const char *path, const char *interface, const struct wpa_dbus_object_desc *obj_dsc) argument
711 do_send_deprecated_prop_changed_signal( DBusConnection *con, const char *path, const char *interface, const struct wpa_dbus_object_desc *obj_dsc) argument
747 send_prop_changed_signal( DBusConnection *con, const char *path, const char *interface, const struct wpa_dbus_object_desc *obj_dsc) argument
873 wpa_dbus_mark_property_changed(struct wpas_dbus_priv *iface, const char *path, const char *interface, const char *property) argument
927 wpa_dbus_get_object_properties(struct wpas_dbus_priv *iface, const char *path, const char *interface, DBusMessageIter *iter) argument
[all...]
/external/webp/src/utils/
H A Dthread.h51 // The interface for all thread-worker related functions. All these functions
78 // decoding takes place. The contents of the interface struct are copied, it
82 const WebPWorkerInterface* const interface); variable
84 // Retrieve the currently set thread worker interface.
/external/valgrind/main/include/vki/
H A Dvki-linux.h3 /*--- Linux-specific kernel interface. vki-linux.h ---*/
31 /* This file defines types and constants for the kernel interface, and to
790 /* interface settings */
821 #define vki_ifr_name ifr_ifrn.ifrn_name /* interface name */
826 #define ifr_netmask ifr_ifru.ifru_netmask /* interface net mask */
832 #define vki_ifr_data ifr_ifru.ifru_data /* for use by interface */
833 #define vki_ifr_ifindex ifr_ifru.ifru_ivalue /* interface index */
2443 unsigned int interface; member in struct:vki_usbdevfs_getdriver
2475 int ifno; /* interface 0..N ; negative numbers reserved */
2600 #define VKI_SIOCGIWPRIV 0x8B0D /* get private ioctl interface inf
[all...]
/external/skia/src/gpu/gl/
H A DGrGLAssembleInterface.cpp40 GrGLInterface* interface = SkNEW(GrGLInterface()); local
41 GrGLInterface::Functions* functions = &interface->fFunctions;
220 delete interface;
291 interface->fStandard = kGL_GrGLStandard;
292 interface->fExtensions.swap(&extensions);
294 return interface;
H A DGrGLContext.cpp24 bool GrGLContextInfo::initialize(const GrGLInterface* interface) { argument
28 if (interface->fFunctions.fGetString) {
30 GR_GL_CALL_RET(interface, verUByte, GetString(GR_GL_VERSION));
34 GR_GL_CALL_RET(interface, rendererUByte, GetString(GR_GL_RENDERER));
37 if (interface->validate()) {
44 if (!GrGetGLSLGeneration(interface, &fGLSLGeneration)) {
48 fVendor = GrGLGetVendor(interface);
57 fInterface.reset(SkRef(interface));
59 return fGLCaps->init(*this, interface);
H A DGrGLContext.h45 bool initialize(const GrGLInterface* interface);
93 explicit GrGLContext(const GrGLInterface* interface) { argument
94 this->initialize(interface);
104 const GrGLInterface* interface() const { return fInterface.get(); } function in class:GrGLContext
H A DGrGLCreateNullInterface.cpp14 // Functions not declared in GrGLBogusInterface.h (not common with the Debug GL interface).
288 GrGLInterface* interface = SkNEW(GrGLInterface); local
290 interface->fStandard = kGL_GrGLStandard;
292 GrGLInterface::Functions* functions = &interface->fFunctions;
425 interface->fExtensions.init(kGL_GrGLStandard, functions->fGetString, functions->fGetStringi,
427 return interface;
H A DGrGLInterface.cpp21 const GrGLInterface* GrGLInterfaceAddTestDebugMarker(const GrGLInterface* interface, argument
25 GrGLInterface* newInterface = GrGLInterface::NewClone(interface);
38 const GrGLInterface* GrGLInterfaceRemoveNVPR(const GrGLInterface* interface) { argument
39 GrGLInterface* newInterface = GrGLInterface::NewClone(interface);
105 GrGLInterface* GrGLInterface::NewClone(const GrGLInterface* interface) { argument
106 SkASSERT(NULL != interface);
109 clone->fStandard = interface->fStandard;
110 clone->fExtensions = interface->fExtensions;
111 clone->fFunctions = interface->fFunctions;
113 clone->fCallback = interface
[all...]
H A DGrGpuGL.cpp126 GrGLClearErr(fGLContext.interface());
261 // currently part of our gl interface. There are probably others as
527 GrGLenum check_alloc_error(const GrTextureDesc& desc, const GrGLInterface* interface) { argument
529 return GR_GL_GET_ERROR(interface);
531 return CHECK_ALLOC_ERROR(interface);
791 CLEAR_ERROR_BEFORE_ALLOC(ctx.interface());
797 GL_ALLOC_CALL(ctx.interface(),
804 GL_ALLOC_CALL(ctx.interface(),
812 GL_ALLOC_CALL(ctx.interface(),
822 return (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctx.interface()));;
[all...]
/external/skia/src/gpu/gl/android/
H A DGrGLCreateNativeInterface_android.cpp27 GrGLInterface* interface = SkNEW(GrGLInterface); local
28 interface->fStandard = kGLES_GrGLStandard;
29 GrGLInterface::Functions* functions = &interface->fFunctions;
240 return interface;
264 GrGLInterface* interface = create_es_interface(version, &extensions); local
266 if (NULL != interface) {
267 interface->fExtensions.swap(&extensions);
270 return interface;
H A DSkNativeGLContext_android.cpp84 const GrGLInterface* interface = NULL; local
86 for (size_t api = 0; NULL == interface && api < SK_ARRAY_COUNT(kAPIs); ++api) {
146 interface = GrGLCreateNativeInterface();
147 if (NULL == interface) {
148 SkDebugf("Failed to create gl interface.\n");
153 if (!interface->validate()) {
154 interface->unref();
155 interface = NULL;
160 return interface;
/external/skia/src/gpu/gl/angle/
H A DGrGLCreateANGLEInterface.cpp21 interface->fFunctions.f ## name = (GrGL ## name ## Proc) GetProcAddress(ghANGLELib, "gl" #name);
32 // We can't setup the interface correctly w/o the DLL
36 GrGLInterface* interface = SkNEW(GrGLInterface); local
37 interface->fStandard = kGLES_GrGLStandard;
39 GrGLInterface::Functions* functions = &interface->fFunctions;
182 interface->fExtensions.init(kGLES_GrGLStandard,
186 return interface;
H A DSkANGLEGLContext.cpp93 const GrGLInterface* interface = GrGLCreateANGLEInterface(); local
94 if (NULL == interface) {
95 SkDebugf("Could not create ANGLE GL interface!\n");
100 return interface;
/external/skia/src/gpu/gl/debug/
H A DGrGLCreateDebugInterface.cpp795 void setWrapped(GrGLInterface *interface) { argument
796 fWrapped.reset(interface);
799 // TODO: there are some issues w/ wrapping another GL interface inside the
800 // debug interface:
804 // "glInterface" pointer - i.e., treating the debug interface as a
812 // interface as a singleton (since there would be one for each
817 // the debug GL interface (assuming that the application will create
823 // and then pass the wrapped interface to the debug GL interface.
835 GrGLInterface* interface local
[all...]
/external/skia/src/gpu/gl/iOS/
H A DGrGLCreateNativeInterface_iOS.cpp15 GrGLInterface* interface = SkNEW(GrGLInterface); local
17 GrGLInterface::Functions* functions = &interface->fFunctions;
170 interface->fStandard = kGLES_GrGLStandard;
171 interface->fExtensions.init(kGLES_GrGLStandard, glGetString, NULL, glGetIntegerv);
173 return interface;
/external/skia/src/gpu/gl/mac/
H A DSkNativeGLContext_mac.cpp65 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
66 if (NULL == interface) {
67 SkDebugf("Context could not create GL interface.\n");
72 return interface;
/external/skia/src/gpu/gl/mesa/
H A DSkMesaGLContext.cpp89 const GrGLInterface* interface = GrGLCreateMesaInterface(); local
90 if (!interface) {
91 SkDebugf("Could not create GL interface!\n");
95 return interface;
/external/skia/src/gpu/gl/unix/
H A DSkNativeGLContext_unix.cpp274 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
275 if (!interface) {
276 SkDebugf("Failed to create gl interface");
280 return interface;
/external/skia/src/gpu/gl/win/
H A DSkNativeGLContext_win.cpp101 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
102 if (NULL == interface) {
103 SkDebugf("Could not create GL interface.\n");
108 return interface;
/external/skia/tests/
H A DGLInterfaceValidationTest.cpp33 const GrGLInterface* interface = glCtxHelper->gl(); local
34 REPORTER_ASSERT(reporter, interface->validate());
/external/qemu/distrib/sdl-1.2.15/src/joystick/darwin/
H A DSDL_sysjoystick.c79 IOHIDDeviceInterface ** interface; /* interface to device, NULL = no interface */ member in struct:joystick_hwdata
123 if (NULL != pDevice && NULL != pElement && NULL != pDevice->interface)
125 result = (*(pDevice->interface))->getElementValue(pDevice->interface, pElement->cookie, &hidEvent);
164 /* Create and open an interface to device, required prior to extracting values or building queues.
175 if (NULL == pDevice->interface)
181 /* Call a method of the intermediate plug-in to create the device interface */
183 CFUUIDGetUUIDBytes (kIOHIDDeviceInterfaceID), (void *) &(pDevice->interface));
[all...]
/external/oprofile/gui/
H A Doprof_start.cpp132 op_interface interface = op_get_interface(); local
133 if (interface == OP_INTERFACE_NO_GOOD) {
135 " interface version");
138 bool is_26 = interface == OP_INTERFACE_26;

Completed in 1602 milliseconds

1234567