/prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 __u16 opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/system/core/logwrapper/include/logwrap/ |
logwrap.h | 57 * opts: set to non-NULL if you want to use one or more of the 59 * opts_len: the length of the opts array. When opts is NULL, pass 0. 98 const struct AndroidForkExecvpOption* opts, size_t opts_len);
|
/system/extras/tests/mmc_tracepoints/ |
README | 17 opts.
|
/external/deqp/executor/tools/ |
xeTestLogCompare.cpp | 370 de::cmdline::CommandLine opts; local 376 if (!parser.parse(argc-1, &argv[1], &opts, std::cerr) || 377 opts.getArgs().empty()) 384 cmdLine.outFormat = opts.getOption<opt::OutFormat>(); 385 cmdLine.outMode = opts.getOption<opt::OutMode>(); 386 cmdLine.outValue = opts.getOption<opt::OutValue>(); 387 cmdLine.filenames = opts.getArgs();
|
/external/llvm/utils/TableGen/ |
OptParserEmitter.cpp | 112 std::vector<Record*> Opts = Records.getAllDerivedDefinitions("Option"); 116 array_pod_sort(Opts.begin(), Opts.end(), CompareOptionRecords); 123 for (unsigned i = 0, e = Opts.size(); i != e; ++i) { 124 const Record &R = *Opts[i]; 203 for (unsigned i = 0, e = Opts.size(); i != e; ++i) { 204 const Record &R = *Opts[i];
|
/external/skia/src/codec/ |
SkBmpStandardCodec.cpp | 39 const Options& opts, 43 if (opts.fSubset) { 56 Result result = this->prepareToDecode(dstInfo, opts, inputColorPtr, inputColorCount); 60 int rows = this->decodeRows(dstInfo, dst, dstRowBytes, opts); 155 void SkBmpStandardCodec::initializeSwizzler(const SkImageInfo& dstInfo, const Options& opts) { 189 fSwizzler.reset(SkSwizzler::CreateSwizzler(config, colorPtr, dstInfo, opts)); 214 const Options& opts) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/ |
RecentsTaskLoadPlan.java | 204 public synchronized void executePlan(Options opts, RecentsTaskLoader loader, 216 boolean isRunningTask = (task.key.id == opts.runningTaskId); 217 boolean isVisibleTask = i >= (taskCount - opts.numVisibleTasks); 218 boolean isVisibleThumbnail = i >= (taskCount - opts.numVisibleTaskThumbnails); 221 if (opts.onlyLoadPausedActivities && isRunningTask) { 225 if (opts.loadIcons && (isRunningTask || isVisibleTask)) { 231 if (opts.loadThumbnails && (isRunningTask || isVisibleThumbnail)) {
|
/prebuilts/go/darwin-x86/src/crypto/rsa/ |
pss_test.go | 132 opts := &PSSOptions{ 159 if err := VerifyPSS(key, hash, hashed, sig, opts); err != nil { 218 var opts PSSOptions 221 opts.SaltLength = test.signSaltLength 222 sig, err := SignPSS(rand.Reader, rsaPrivateKey, hash, hashed, &opts) 228 opts.SaltLength = test.verifySaltLength 229 err = VerifyPSS(&rsaPrivateKey.PublicKey, hash, hashed, sig, &opts)
|
/prebuilts/go/linux-x86/src/crypto/rsa/ |
pss_test.go | 132 opts := &PSSOptions{ 159 if err := VerifyPSS(key, hash, hashed, sig, opts); err != nil { 218 var opts PSSOptions 221 opts.SaltLength = test.signSaltLength 222 sig, err := SignPSS(rand.Reader, rsaPrivateKey, hash, hashed, &opts) 228 opts.SaltLength = test.verifySaltLength 229 err = VerifyPSS(&rsaPrivateKey.PublicKey, hash, hashed, sig, &opts)
|
/external/iproute2/tc/ |
m_ipt.c | 55 static struct option *opts = original_opts; variable in typeref:struct:option 168 opts = original_opts; 423 c = getopt_long(argc, argv, "j:", opts, NULL); 435 opts = 436 merge_options(opts, m->extra_opts, 465 free_opts(opts); 523 free_opts(opts); 580 opts = 581 merge_options(opts, m->extra_opts, 611 free_opts(opts); [all...] |
/system/core/logwrapper/ |
logwrap.c | 295 const struct AndroidForkExecvpOption* opts, size_t opts_len) { 363 if (opts[i].opt_type == FORK_EXECVP_OPTION_CAPTURE_OUTPUT) { 364 opts[i].opt_capture_output.on_output( 365 (uint8_t*)&buffer[b], sz, opts[i].opt_capture_output.user_pointer); 486 const struct AndroidForkExecvpOption* opts, size_t opts_len) { 543 if (opts[i].opt_type == FORK_EXECVP_OPTION_INPUT) { 565 if (opts[i].opt_type == FORK_EXECVP_OPTION_INPUT) { 566 size_t left = opts[i].opt_input.input_len; 567 const uint8_t* input = opts[i].opt_input.input; 581 abbreviated, file_path, opts, opts_len) [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
BitmapFactoryTest.java | 294 BitmapFactory.Options opts = new BitmapFactory.Options(); local 295 opts.inPurgeable = TEST_PURGEABLE; 296 opts.inInputShareable = TEST_PURGEABLE; 310 Bitmap b = BitmapFactory.decodeFileDescriptor(fd, null, opts); 321 b = BitmapFactory.decodeFileDescriptor(fd, null, opts); 579 BitmapFactory.Options opts = new BitmapFactory.Options(); local 580 opts.inScaled = false; 581 Bitmap b = BitmapFactory.decodeResource(mRes, R.drawable.gif_test, opts); 638 Options opts = new BitmapFactory.Options(); local 639 opts.inScaled = false [all...] |
/external/iptables/iptables/ |
xshared.c | 157 gl->opts = xtables_options_xfrm(gl->orig_opts, 158 gl->opts, 162 gl->opts = xtables_merge_options(gl->orig_opts, 163 gl->opts, 166 if (gl->opts == NULL)
|
/external/libselinux/src/ |
label_android_property.c | 139 static int init(struct selabel_handle *rec, const struct selinux_opt *opts, 152 switch (opts[n].type) { 154 path = opts[n].value; 283 const struct selinux_opt *opts, 298 return init(rec, opts, nopts);
|