/build/tools/releasetools/ |
img_from_target_files | 48 OPTIONS = common.OPTIONS 64 if OPTIONS.info_dict["fstab"]["/data"].fs_type.startswith("ext"): 67 OPTIONS.info_dict["fstab"]["/data"].fs_type, "data"] 68 if "userdata_size" in OPTIONS.info_dict: 69 build_command.append(str(OPTIONS.info_dict["userdata_size"])) 72 extra = OPTIONS.info_dict.get("mkyaffs2_extra_flags", None) 82 common.CheckSize(img.name, "userdata.img", OPTIONS.info_dict) 101 os.symlink(os.path.join(OPTIONS.input_tmp, "SYSTEM"), 102 os.path.join(OPTIONS.input_tmp, "system") [all...] |
/device/sample/sdk_addon/ |
hardware.ini | 1 # Custom hardware options for the add-on.
|
/external/bluetooth/bluez/input/ |
input.conf | 3 # This section contains options which are not specific to any
|
/external/dhcpcd/ |
android.conf | 5 # dhcpcd-run-hooks uses these options.
|
/external/dhcpcd/dhcpcd-hooks/ |
01-test | 1 # Just echo our DHCP options we have
|
/external/genext2fs/ |
TODO | 3 - support fancy ext2 options
|
/hardware/broadcom/wlan/bcm4329/config/ |
android_dhcpcd.conf | 5 # dhcpcd-run-hooks uses these options.
|
/hardware/ti/wlan/wl1271/config/ |
android_dhcpcd.conf | 5 # dhcpcd-run-hooks uses these options.
|
/system/bluetooth/data/ |
input.conf | 3 # This section contains options which are not specific to any
|
/system/wlan/ti/sta_dk_4_0_4_32/config/ |
android_dhcpcd.conf | 5 # dhcpcd-run-hooks uses these options.
|
/system/wlan/ti/wilink_6_1/config/ |
android_dhcpcd.conf | 5 # dhcpcd-run-hooks uses these options.
|
/bionic/libc/unistd/ |
wait.c | 31 extern pid_t __wait4 (pid_t pid, int *status, int options, struct rusage *rusage); 32 extern int __waitid(idtype_t which, id_t id, siginfo_t *info, int options, struct rusage *ru); 39 pid_t wait3(int* status, int options, struct rusage* rusage) 41 return __wait4( (pid_t)-1, status, options, rusage ); 44 pid_t waitpid(pid_t pid, int* status, int options) 46 return __wait4( pid, status, options, NULL ); 49 int waitid(idtype_t which, id_t id, siginfo_t *info, int options) 52 return __waitid(which, id, info, options, NULL);
|
/external/bluetooth/bluez/test/ |
hciemu.1 | 14 .SH OPTIONS
|
/external/kernel-headers/original/linux/netfilter_ipv4/ |
ipt_LOG.h | 6 #define IPT_LOG_TCPOPT 0x02 /* Log TCP options */ 7 #define IPT_LOG_IPOPT 0x04 /* Log IP options */
|
/external/kernel-headers/original/linux/netfilter_ipv6/ |
ip6t_LOG.h | 6 #define IP6T_LOG_TCPOPT 0x02 /* Log TCP options */ 7 #define IP6T_LOG_IPOPT 0x04 /* Log IP options */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/ |
ipt_LOG.h | 6 #define IPT_LOG_TCPOPT 0x02 /* Log TCP options */ 7 #define IPT_LOG_IPOPT 0x04 /* Log IP options */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv6/ |
ip6t_LOG.h | 6 #define IP6T_LOG_TCPOPT 0x02 /* Log TCP options */ 7 #define IP6T_LOG_IPOPT 0x04 /* Log IP options */
|
/external/e2fsprogs/lib/ext2fs/ |
io_manager.c | 25 char *next, *ptr, *options, *arg; local 35 options = malloc(strlen(opts)+1); 36 if (!options) 38 strcpy(options, opts); 39 ptr = options; 55 free(options);
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_generator.cc | 52 if (file->options().has_java_outer_classname()) { 54 file->name(), file->options().java_outer_classname()); 56 if (file->options().has_java_package()) { 58 file->name(), file->options().java_package()); 75 vector<pair<string, string> > options; local 82 ParseGeneratorParameter(parameter, &options); 85 // parse generator options 92 // Get options from the proto file 93 if (file->options().has_java_multiple_files()) { 94 params.set_java_multiple_files(file->options().java_multiple_files()) [all...] |
/external/libvpx/examples/includes/HTML-Toc-0.91/ |
Toc.pm | 73 # Default to empty 'options' array 74 $self->{options} = {}; 85 # Set default options 122 ($self->{options}{'doNestGroup'} == 0) && 167 $levelIndent = $self->{options}{'levelIndent'}; #=~ s/[0-9]+/&/; 209 ($level =~ m/$self->{options}{'levelToToc'}/) && 210 ($groupId =~ m/$self->{options}{'groupToToc'}/) 239 $self->{options}{'doSingleStepLevel'} && 296 $numberingStyle = defined($self->{options}{'numberingStyle'}) ? 297 $self->{options}{'numberingStyle'} : NUMBERING_STYLE_DECIMAL [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
Util.java | 102 public static int computeSampleSize(BitmapFactory.Options options, 104 int initialSize = computeInitialSampleSize(options, minSideLength, 120 private static int computeInitialSampleSize(BitmapFactory.Options options, 122 double w = options.outWidth; 123 double h = options.outHeight; 280 BitmapFactory.Options options = null; local 282 options = createNativeAllocOptions() 295 BitmapFactory.Options options = null; local 434 BitmapFactory.Options options = new BitmapFactory.Options(); local [all...] |
/frameworks/base/media/java/android/media/ |
ThumbnailUtils.java | 54 /* Options used internally. */ 109 BitmapFactory.Options options = new BitmapFactory.Options(); local 110 options.inSampleSize = 1; 111 options.inJustDecodeBounds = true; 112 BitmapFactory.decodeFileDescriptor(fd, null, options); 113 if (options.mCancel || options.outWidth == -1 114 || options.outHeight == -1) [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/style/ |
error_handlers_unittest.py | 55 def _error_handler(self, options): 57 options, 66 def _call(self, handle_error, options, confidence): 73 def _call_error_handler(self, options, confidence): 75 handle_error = self._error_handler(options) 76 self._call(handle_error, options, confidence) 81 options = ProcessorOptions(verbosity=3) 85 self.assertFalse(options.is_reportable(self._category, 89 self._call_error_handler(options, confidence) 97 options = ProcessorOptions(verbosity=3, output_format="emacs" [all...] |
/external/bzip2/ |
bzdiff | 8 # gram on compressed files. All options specified are passed 22 OPTIONS= 27 -*) OPTIONS="$OPTIONS $ARG";; 47 bzip2 -cd "$FILE.bz2" | $comp $OPTIONS - "$FILE" 57 bzip2 -cdfq "$1" | $comp $OPTIONS - $tmp 61 *) bzip2 -cdfq "$1" | $comp $OPTIONS - "$2" 66 bzip2 -cdfq "$2" | $comp $OPTIONS "$1" - 68 *) $comp $OPTIONS "$1" "$2"
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
BitmapFactory_OptionsTest.java | 24 @TestTargetClass(BitmapFactory.Options.class) 28 method = "BitmapFactory.Options", 32 new BitmapFactory.Options(); 41 BitmapFactory.Options option = new BitmapFactory.Options();
|