Searched defs:deviceName (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILDeviceInfo.cpp20 getDeviceFromName(const std::string &deviceName, AMDGPUSubtarget *ptr, argument
23 if (deviceName.c_str()[2] == '7') {
24 switch (deviceName.c_str()[3]) {
32 } else if (deviceName == "cypress") {
39 } else if (deviceName == "juniper") {
46 } else if (deviceName == "redwood") {
53 } else if (deviceName == "cedar") {
60 } else if (deviceName == "barts"
61 || deviceName == "turks") {
68 } else if (deviceName
[all...]
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILDeviceInfo.cpp20 getDeviceFromName(const std::string &deviceName, AMDGPUSubtarget *ptr, argument
23 if (deviceName.c_str()[2] == '7') {
24 switch (deviceName.c_str()[3]) {
32 } else if (deviceName == "cypress") {
39 } else if (deviceName == "juniper") {
46 } else if (deviceName == "redwood") {
53 } else if (deviceName == "cedar") {
60 } else if (deviceName == "barts"
61 || deviceName == "turks") {
68 } else if (deviceName
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DVideoCapturer.java38 public static VideoCapturer create(String deviceName) { argument
39 long nativeVideoCapturer = nativeCreateVideoCapturer(deviceName);
64 private static native long nativeCreateVideoCapturer(String deviceName); argument
/external/chromium_org/third_party/webrtc/modules/video_capture/
H A Dvideo_capture_delay.h29 char * deviceName; member in struct:webrtc::videocapturemodule::DelayValues
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/testbed/
H A Dtb_capture_device.cc23 char deviceName[KMaxDeviceNameLength]; local
24 memset(deviceName, 0, KMaxDeviceNameLength);
36 EXPECT_EQ(0, devInfo->GetDeviceName(captureIdx, deviceName,
61 device_name_ = deviceName;
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DGamepadMappings.java24 float[] rawAxes, float[] rawButtons, String deviceName) {
25 if (deviceName.startsWith(NVIDIA_SHIELD_DEVICE_NAME_PREFIX)) {
28 } else if (deviceName.equals(MICROSOFT_XBOX_PAD_DEVICE_NAME)) {
31 } else if (deviceName.equals(PS3_SIXAXIS_DEVICE_NAME)) {
34 } else if (deviceName.equals(SAMSUNG_EI_GP20_DEVICE_NAME)) {
23 mapToStandardGamepad(float[] mappedAxes, float[] mappedButtons, float[] rawAxes, float[] rawButtons, String deviceName) argument
/external/chromium_org/third_party/skia/tools/skpdiff/
H A Dskpdiff_main.cpp82 cl::STRING_CLASS deviceName; local
83 device->getInfo(CL_DEVICE_NAME, &deviceName);
84 SkDebugf("Device index 0 is named %s\n", deviceName.c_str());
/external/skia/tools/skpdiff/
H A Dskpdiff_main.cpp73 cl::STRING_CLASS deviceName; local
74 device->getInfo(CL_DEVICE_NAME, &deviceName);
75 SkDebugf("Device index 0 is named %s\n", deviceName.c_str());
/external/chromium_org/third_party/webrtc/modules/audio_device/linux/
H A Daudio_mixer_manager_alsa_linux.cc163 int32_t AudioMixerManagerLinuxALSA::OpenSpeaker(char* deviceName) argument
166 "AudioMixerManagerLinuxALSA::OpenSpeaker(name=%s)", deviceName);
213 GetControlName(controlName, deviceName);
256 int32_t AudioMixerManagerLinuxALSA::OpenMicrophone(char *deviceName) argument
260 deviceName);
315 GetControlName(controlName, deviceName);
1292 char* deviceName) const
1295 // deviceName: "front:CARD=Intel,DEV=0"
1297 char* pos1 = strchr(deviceName, ':');
1298 char* pos2 = strchr(deviceName, ',');
[all...]
H A Daudio_device_alsa_linux.cc1083 char deviceName[kAdmMaxDeviceNameSize] = {0}; local
1084 GetDevicesInfo(2, true, _outputDeviceIndex, deviceName,
1088 " InitPlayout open (%s)", deviceName);
1092 deviceName,
1103 deviceName,
1240 char deviceName[kAdmMaxDeviceNameSize] = {0}; local
1241 GetDevicesInfo(2, false, _inputDeviceIndex, deviceName,
1245 "InitRecording open (%s)", deviceName);
1248 deviceName,
1260 deviceName,
[all...]
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
H A Dvie_autotest_loopback.cc127 char deviceName[KMaxDeviceNameLength]; local
128 memset(deviceName, 0, KMaxDeviceNameLength);
138 memset(deviceName, 0, KMaxDeviceNameLength);
141 error = ptrViECapture->GetCaptureDevice(captureIdx, deviceName,
149 printf("\t %d. %s\n", captureIdx + 1, deviceName);
164 error = ptrViECapture->GetCaptureDevice(captureIdx, deviceName,
H A Dvie_autotest_record.cc69 char deviceName[KMaxDeviceNameLength]; local
189 memset(deviceName, 0, KMaxDeviceNameLength);
198 memset(deviceName, 0, KMaxDeviceNameLength);
201 error = ptrViECapture->GetCaptureDevice(captureIdx, deviceName,
208 printf("\t %d. %s\n", captureIdx + 1, deviceName);
222 error = ptrViECapture->GetCaptureDevice(captureIdx, deviceName,
/external/chromium_org/third_party/mesa/src/src/glx/
H A Ddri2.c267 DRI2Connect(Display * dpy, XID window, char **driverName, char **deviceName) argument
318 *deviceName = Xmalloc(rep.deviceNameLength + 1);
319 if (*deviceName == NULL) {
326 _XReadPad(dpy, *deviceName, rep.deviceNameLength);
327 (*deviceName)[rep.deviceNameLength] = '\0';
H A Ddri2_glx.c1029 char *driverName, *deviceName, *tmp; local
1046 &driverName, &deviceName)) {
1078 psc->fd = open(deviceName, O_RDWR | O_CLOEXEC);
1082 psc->fd = open(deviceName, O_RDWR);
1167 Xfree(deviceName);
1190 Xfree(deviceName);
/external/mesa3d/src/glx/
H A Ddri2.c267 DRI2Connect(Display * dpy, XID window, char **driverName, char **deviceName) argument
318 *deviceName = Xmalloc(rep.deviceNameLength + 1);
319 if (*deviceName == NULL) {
326 _XReadPad(dpy, *deviceName, rep.deviceNameLength);
327 (*deviceName)[rep.deviceNameLength] = '\0';
H A Ddri2_glx.c1029 char *driverName, *deviceName, *tmp; local
1046 &driverName, &deviceName)) {
1078 psc->fd = open(deviceName, O_RDWR | O_CLOEXEC);
1082 psc->fd = open(deviceName, O_RDWR);
1167 Xfree(deviceName);
1190 Xfree(deviceName);
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xxf86dga/
H A DXF86DGA2.c232 char *deviceName = NULL; local
249 deviceName = Xmalloc(rep.length << 2);
250 _XRead(dpy, deviceName, rep.length << 2);
253 ret = SDL_NAME(XDGAMapFramebuffer)(screen, deviceName,
257 if(deviceName)
258 Xfree(deviceName);
/external/chromium_org/remoting/client/jni/
H A Dchromoting_jni_runtime.cc101 jstring deviceName) {
104 ConvertJavaStringToUTF8(env, deviceName));
97 AuthenticationResponse(JNIEnv* env, jclass clazz, jstring pin, jboolean createPair, jstring deviceName) argument
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/
H A DJniInterface.java310 * @param deviceName The device name to appear in the pairing registry. Only used if createPair
314 String deviceName);
313 nativeAuthenticationResponse(String pin, boolean createPair, String deviceName) argument
/external/qemu/android/avd/
H A Dinfo.c111 char* deviceName; member in struct:AvdInfo
182 AFREE(i->deviceName);
434 char* iniPath = path_getRootIniPath( i->deviceName );
437 derror("unknown virtual device name: '%s'", i->deviceName);
787 i->deviceName = ASTRDUP(name);
913 i->deviceName = ASTRDUP("<build>");
934 return i ? i->deviceName : NULL;
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 603 milliseconds