HomeSort by relevance Sort by last modified time
    Searched defs:mode (Results 201 - 225 of 661) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Settings/src/com/android/settings/
BrightnessPreference.java 142 private void setMode(int mode) {
143 if (mode == Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC) {
149 Settings.System.SCREEN_BRIGHTNESS_MODE, mode); local
  /system/core/adb/
file_sync_service.c 64 msg.stat.mode = 0;
68 msg.stat.mode = htoll(st.st_mode);
106 msg.dent.mode = htoll(st.st_mode);
122 msg.dent.mode = 0;
151 static int handle_send_file(int s, char *path, mode_t mode, char *buffer)
157 fd = adb_open_mode(path, O_WRONLY | O_CREAT | O_EXCL, mode);
160 fd = adb_open_mode(path, O_WRONLY | O_CREAT | O_EXCL, mode);
163 fd = adb_open_mode(path, O_WRONLY, mode);
277 mode_t mode; local
284 mode = strtoul(tmp + 1, NULL, 0)
    [all...]
file_sync_service.h 57 unsigned mode; member in struct:__anon12980::__anon12982
63 unsigned mode; member in struct:__anon12980::__anon12983
  /system/core/toolbox/
ls.c 27 static char mode2kind(unsigned mode)
29 switch(mode & S_IFMT){
41 static void mode2str(unsigned mode, char *out)
43 *out++ = mode2kind(mode);
45 *out++ = (mode & 0400) ? 'r' : '-';
46 *out++ = (mode & 0200) ? 'w' : '-';
47 if(mode & 04000) {
48 *out++ = (mode & 0100) ? 's' : 'S';
50 *out++ = (mode & 0100) ? 'x' : '-';
52 *out++ = (mode & 040) ? 'r' : '-'
140 char mode[16]; local
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/TNETW_Driver/TNETWIF/ELP_Controller/
ElpCtrl.c 72 elpCtrl_Mode_e mode; member in struct:_elpCtrl_t
206 pElpCtrl->mode = ELPCTRL_MODE_KEEP_AWAKE;
408 if (pElpCtrl->state == ELPS_AWAKE && pElpCtrl->mode == ELPCTRL_MODE_NORMAL)
484 int elpCtrl_Mode (TI_HANDLE hElpCtrl, elpCtrl_Mode_e mode)
488 pElpCtrl->mode = mode;
579 pElpCtrl->mode = ELPCTRL_MODE_KEEP_AWAKE;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
EmulatorConfigTab.java 156 // radio button for the target mode
158 targetModeGroup.setText("Deployment Target Selection Mode");
329 TargetMode mode = LaunchConfigDelegate.DEFAULT_TARGET_MODE; // true == automatic local
331 mode = TargetMode.getMode(configuration.getAttribute(
332 LaunchConfigDelegate.ATTR_TARGET_MODE, mode.getValue()));
336 mAutoTargetButton.setSelection(mode.getValue());
337 mManualTargetButton.setSelection(!mode.getValue());
  /bionic/libc/kernel/common/linux/
mt9t013.h 92 uint32_t mode; member in struct:mt9t013_exposure_gain
proc_fs.h 38 mode_t mode; member in struct:proc_dir_entry
73 #define proc_net_fops_create(name, mode, fops) ({ (void)(mode), NULL; })
74 #define proc_net_create(name, mode, info) ({ (void)(mode), NULL; })
  /bionic/libc/netbsd/nameser/
ns_print.c 631 int mode, err, keysize; local
647 /* Mode , Error, Key Size. */
649 mode = ns_get16(rdata); rdata += NS_INT16SZ;
652 len = SPRINTF((tmp, "%u %u %u ", mode, err, keysize));
  /dalvik/libcore/crypto/src/main/java/javax/crypto/
Cipher.java 48 * <li><i>"algorithm/mode/padding"</i></li> or
51 * <i>algorithm</i> is the name of a cryptographic algorithm, <i>mode</i> is the
52 * name of a feedback mode and <i>padding</i> is the name of a padding scheme.
53 * If <i>mode</i> and/or <i>padding</i> values are omitted, provider specific
60 * When a block cipher is requested in in stream cipher mode, the number of bits
62 * mode name. e.g. <i>"AES/CFB8/NoPadding"</i>. If no number is specified, a
68 * Constant for decryption operation mode.
73 * Constant for encryption operation mode.
93 * Constant for key unwrapping operation mode.
98 * Constant for key wrapping operation mode
102 private int mode; field in class:Cipher
    [all...]
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherThread.java 34 private String mode = null; field in class:CipherThread
66 mode = getNextMode();
120 return mode;
124 return "Alg name:" + algName + " Key:" + keyLength + " Mode:" + mode +
  /dalvik/libcore/luni/src/main/native/
org_apache_harmony_luni_platform_OSFileSystem.cpp 403 int mode = 0; local
410 mode = 0;
414 mode = 0600;
418 mode = 0600;
422 mode = 0600;
426 mode = 0600;
434 jint rc = TEMP_FAILURE_RETRY(open(&path[0], flags, mode));
  /dalvik/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 56 * There are two modes of test run: <b>reference generation mode </b> and
57 * <b>testing mode </b>. The actual mode is selected via
58 * <b>&quot;test.mode&quot; </b> system property. The <b>testing mode </b> is
59 * the default mode. <br>
60 * To turn on the <b>reference generation mode </b>, the test.mode property
61 * should be set to value &quot;serial.reference&quot;. In this mode, no testing
63 * serialized objects. This mode should be run on a pure
81 public static String mode = System.getProperty(MODE_KEY); field in class:SerializationTest
    [all...]
  /development/simulator/wrapsim/
Intercept.c 173 PASS_THROUGH_DECL(chmod, int, const char* path, mode_t mode)
174 PASS_THROUGH_BODY(chmod, path, mode)
179 PASS_THROUGH_DECL(creat, int, const char* path, mode_t mode)
180 PASS_THROUGH_BODY(creat, path, mode)
195 PASS_THROUGH_DECL(mkdir, int, const char* path, mode_t mode)
196 PASS_THROUGH_BODY(mkdir, path, mode)
226 PASS_THROUGH_DECL(fopen, FILE*, const char* path, const char* mode)
227 PASS_THROUGH_BODY(fopen, path, mode)
229 PASS_THROUGH_DECL(fopen64, FILE*, const char* path, const char* mode)
230 PASS_THROUGH_BODY(fopen64, path, mode)
563 mode_t mode = 0; local
616 mode_t mode = 0; local
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/
Main.java 131 char mode = s.charAt(0); local
134 if (mode == '@') {
137 } else if (mode == '-') {
145 } else if (mode == '+') {
  /external/bluetooth/bluez/audio/
gsta2dpsink.c 62 "mode = (string) { \"mono\", \"dual\", \"stereo\", \"joint\" }, "
510 gchar *mode = NULL; local
545 if (gst_tag_list_get_string(self->taglist, "channel-mode",
546 &mode))
547 gst_avdtp_sink_set_channel_mode(self->sink, mode);
552 g_free(mode);
gstsbcutil.c 80 * Selects one allocation mode from the ones on the list
90 * Selects one mode from the ones on the list
161 gint gst_sbc_get_channel_number(gint mode)
163 switch (mode) {
231 const gchar *gst_sbc_parse_mode_from_sbc(gint mode)
233 switch (mode) {
248 gint gst_sbc_parse_mode_to_sbc(const gchar *mode)
250 if (g_ascii_strcasecmp(mode, "joint") == 0)
252 else if (g_ascii_strcasecmp(mode, "stereo") == 0)
254 else if (g_ascii_strcasecmp(mode, "dual") == 0
329 const gchar *mode = NULL; local
486 const gchar *mode; local
    [all...]
  /external/bluetooth/bluez/compat/
dund.c 143 /* Set link mode */
155 syslog(LOG_ERR, "Failed to set link mode. %s(%d)", strerror(errno), errno);
215 * -1 - critical error (exit persist mode)
301 * -1 - critical error (exit persist mode)
429 "\t--persist -p[interval] Persist mode\n"
439 int mode = NONE; local
445 mode = SHOW;
450 mode = LISTEN;
455 mode = CONNECT;
460 mode = CONNECT
    [all...]
  /external/bluetooth/bluez/plugins/
hciops.c 187 /* Set link mode */
190 error("Can't set link mode on hci%d: %s (%d)",
499 uint8_t mode = SCAN_DISABLED; local
509 1, &mode);
519 uint8_t mode = SCAN_PAGE; local
526 1, &mode);
536 uint8_t mode = (SCAN_PAGE | SCAN_INQUIRY); local
543 1, &mode);
  /external/bluetooth/bluez/tools/
hid2hci.c 91 int mode; member in struct:device_info
106 0, devinfo->mode, 0, NULL, 0, 10000);
215 switch (devinfo->mode) {
278 printf("hid2hci - Bluetooth HID to HCI mode switching utility\n\n");
287 "\t-r, --mode= Mode to switch to [hid, hci]\n"
299 { "mode", required_argument, 0, 'r' },
316 dev.mode = HID;
318 dev.mode = HCI;
320 usage("ERROR: Undefined radio mode\n")
    [all...]
  /external/bluetooth/glib/gio/
glocalfileoutputstream.c 500 int mode; local
507 mode = 0600;
509 mode = 0666;
511 fd = g_open (filename, O_CREAT | O_EXCL | O_WRONLY | O_BINARY, mode);
545 int mode; local
552 mode = 0600;
554 mode = 0666;
556 fd = g_open (filename, O_CREAT | O_APPEND | O_WRONLY | O_BINARY, mode);
672 int mode; local
675 mode = 0600
991 int mode; local
    [all...]
  /external/dbus/dbus/
dbus-sysdeps.h 1 /* -*- mode: C; c-file-style: "gnu" -*- */
346 unsigned long mode; /**< File mode */ member in struct:__anon1579
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_mac.h 138 #endif /* EAX MODE */
192 unsigned char *ct, unsigned char *tag, unsigned long *taglen, int mode);
243 ivmode, /* Which mode is the IV in? */
244 mode, /* mode the GCM code is in */ member in struct:__anon1628
  /external/e2fsprogs/ext2ed/
file_com.c 441 int mode=HEX; local
451 mode=TEXT;
456 mode=HEX;
464 if (mode==HEX) {
general_com.c 431 int mode=HEX; local
441 mode=TEXT;
446 mode=HEX;
454 if (mode==HEX) {

Completed in 1404 milliseconds

1 2 3 4 5 6 7 891011>>