HomeSort by relevance Sort by last modified time
    Searched defs:interface (Results 76 - 100 of 282) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/libusb/src/libusb/os/
darwin_usb.h 136 usb_interface_t **interface; member in struct:darwin_device_handle_priv::darwin_interface
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
vp8_multi_resolution_encoder.c 27 #define interface (vpx_codec_vp8_cx()) macro
218 printf("Using %s\n",vpx_codec_iface_name(interface));
248 res[i] = vpx_codec_enc_config_default(interface, &cfg[i], 0);
328 if(vpx_codec_enc_init_multi(&codec[0], interface, &cfg[0], NUM_ENCODERS,
  /external/chromium_org/third_party/libvpx/source/libvpx/
tools_common.h 122 vpx_codec_iface_t *(*const interface)(); member in struct:VpxInterface
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLCreateNullInterface.cpp 14 // 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;
  /external/chromium_org/third_party/skia/src/gpu/gl/debug/
GrGLCreateDebugInterface.cpp 795 void setWrapped(GrGLInterface *interface) {
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 = SkNEW(GrDebugGLInterface) local
    [all...]
  /external/chromium_org/tools/grit/grit/gather/
tr_html.py 62 from grit.gather import interface namespace
602 class TrHtml(interface.GathererBase):
  /external/chromium_org/tools/grit/grit/tool/
android2grd.py 19 from grit.tool import interface namespace
43 class Android2Grd(interface.Tool):
111 Overridden from grit.interface.Tool
152 Inherited from grit.interface.Tool.
  /external/chromium_org/v8/src/
interface.h 16 // interface ::= UNDETERMINED | VALUE | CONST | MODULE(exports)
17 // exports ::= {name : interface, ...}
34 class Interface : public ZoneObject {
39 static Interface* NewUnknown(Zone* zone) {
40 return new(zone) Interface(NONE);
43 static Interface* NewValue() {
44 static Interface value_interface(VALUE + FROZEN); // Cached.
48 static Interface* NewConst() {
49 static Interface value_interface(VALUE + CONST + FROZEN); // Cached.
53 static Interface* NewModule(Zone* zone)
153 Interface* interface() const { function in class:v8::internal::Interface::Iterator
    [all...]
variables.h 9 #include "src/interface.h"
60 Interface* interface = Interface::NewValue());
128 Interface* interface() const { return interface_; } function in class:v8::internal::Variable
161 Interface* interface_;
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceQueryTestCase.cpp 21 * \brief Program interface query test case
492 // Atomics are buffer backed with stride of 4 even though they are not in an interface block
545 const glw::GLenum interface = (firstComponent.getInterfaceBlock()->storage == glu::STORAGE_UNIFORM) ? (GL_UNIFORM_BLOCK) : local
551 gl.getProgramResourceName(m_programID, interface, propValue, (int)nameBuffer.size() - 1, &written, &nameBuffer[0]);
    [all...]
  /external/dnsmasq/src/
helper.c 47 char interface[IF_NAMESIZE]; member in struct:script_data
198 if (strlen(data.interface) != 0)
199 my_setenv("DNSMASQ_INTERFACE", data.interface, &err);
349 buf->interface[0] = 0;
356 strncpy(buf->interface, ifr.ifr_name, IF_NAMESIZE);
360 if_indextoname(lease->last_interface, buf->interface);
  /external/libmtp/src/
libusb-glue.h 3 * Low-level USB interface glue towards libusb.
53 uint8_t interface; member in struct:_PTP_USB
  /external/libusb/libusb/
descriptor.c 157 static void clear_interface(struct libusb_interface *interface)
162 if (interface->altsetting) {
163 for (i = 0; i < interface->num_altsetting; i++) {
166 interface->altsetting + i;
176 free((void *) interface->altsetting);
177 interface->altsetting = NULL;
183 struct libusb_interface *interface, unsigned char *buffer, int size,
195 interface->num_altsetting = 0;
199 (struct libusb_interface_descriptor *) interface->altsetting;
202 (interface->num_altsetting + 1))
338 struct libusb_interface *interface; local
    [all...]
  /external/libvpx/libvpx/examples/
decode_with_partial_drops.c 71 #define interface (vpx_codec_vp8_dx()) macro
242 printf("Using %s\n",vpx_codec_iface_name(interface));
245 res = vpx_codec_dec_init(&codec, interface, &dec_cfg, flags);
vp8_multi_resolution_encoder.c 27 #define interface (vpx_codec_vp8_cx()) macro
218 printf("Using %s\n",vpx_codec_iface_name(interface));
248 res[i] = vpx_codec_enc_config_default(interface, &cfg[i], 0);
328 if(vpx_codec_enc_init_multi(&codec[0], interface, &cfg[0], NUM_ENCODERS,
  /external/libvpx/libvpx/
tools_common.h 128 vpx_codec_iface_t *(*const interface)(); member in struct:VpxInterface
  /external/skia/src/gpu/gl/
GrGLCreateNullInterface.cpp 14 // 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;
  /external/skia/src/gpu/gl/debug/
GrGLCreateDebugInterface.cpp 795 void setWrapped(GrGLInterface *interface) {
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 = SkNEW(GrDebugGLInterface) local
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_UsbHostManager.cpp 111 struct usb_interface_descriptor *interface = (struct usb_interface_descriptor *)desc; local
112 char *name = usb_device_get_string(device, interface->iInterface);
116 interface->bInterfaceNumber, interfaceName, interface->bAlternateSetting,
117 interface->bInterfaceClass, interface->bInterfaceSubClass,
118 interface->bInterfaceProtocol);
  /frameworks/wilhelm/src/itf/
IObject.c 332 void *interface = NULL; local
349 // Can't get interface on an unrealized object unless pre-realize is ok
353 // Can't get the MuteSolo interface of an audio player if the channel count is
354 // mono, but _can_ get the MuteSolo interface if the channel count is unknown
360 interface = (char *) thiz + clazz->mInterfaces[index].mOffset;
361 // Note that interface has been gotten,
366 ((size_t *) interface)[0] ^= ~0;
370 // Can't get interface if uninitialized, initialized, suspended,
380 *(void **)pInterface = interface;
578 // Call the deinitializer for each currently initialized interface,
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
decode_with_partial_drops.c 71 #define interface (vpx_codec_vp8_dx()) macro
242 printf("Using %s\n",vpx_codec_iface_name(interface));
245 res = vpx_codec_dec_init(&codec, interface, &dec_cfg, flags);
vp8_multi_resolution_encoder.c 27 #define interface (vpx_codec_vp8_cx()) macro
218 printf("Using %s\n",vpx_codec_iface_name(interface));
248 res[i] = vpx_codec_enc_config_default(interface, &cfg[i], 0);
328 if(vpx_codec_enc_init_multi(&codec[0], interface, &cfg[0], NUM_ENCODERS,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
tools_common.h 128 vpx_codec_iface_t *(*const interface)(); member in struct:VpxInterface
  /system/core/adb/
usb_libusb.c 50 int interface; member in struct:usb_handle
218 libusb_release_interface(h->devh, h->interface);
242 libusb_release_interface(h->devh, h->interface);
249 check_usb_interface(libusb_interface *interface,
255 if (interface->num_altsetting == 0) {
256 D("check_usb_interface(): No interface settings\n");
260 libusb_interface_descriptor *idesc = &interface->altsetting[0];
263 D("check_usb_interface(): Interface have not 2 endpoints, ignoring\n");
284 D("check_usb_interface(): Forced Android interface protocol v.1\n");
313 if (check_usb_interface(&config->interface[i], desc, uh) != -1)
    [all...]
  /system/core/fastboot/
usb_osx.c 61 IOUSBInterfaceInterface190 **interface; member in struct:usb_handle
73 IOUSBInterfaceInterface190 **interface = NULL; local
99 ERR("Couldn't create a device interface iterator: (%08x)\n", kr);
120 // Now create the interface interface for the interface
124 (LPVOID) &interface);
129 if (result || !interface) {
130 ERR("Couldn't create interface interface: (%08x)\n"
    [all...]

Completed in 2078 milliseconds

1 2 34 5 6 7 8 91011>>