Searched refs:fds (Results 1 - 2 of 2) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
H A DIconFactory.java396 FontData[] fds = font.getFontData();
397 fds[0].setStyle(SWT.BOLD);
402 fds[0].setHeight((int) ((SY + 1) * 3./4. * 72./display.getDPI().y));
403 // Note: win32 implementation always uses fds[0] so we change just that one.
405 font = new Font(display, fds);
/sdk/emulator/opengl/tests/event_injector/
H A Dsockets.c1430 int fds[2]; local
1431 int ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fds);
1434 socket_set_nonblock(fds[0]);
1435 socket_set_nonblock(fds[1]);
1436 *fd1 = fds[0];
1437 *fd2 = fds[1];

Completed in 62 milliseconds