HomeSort by relevance Sort by last modified time
    Searched defs:zone (Results 1 - 25 of 214) sorted by null

1 2 3 4 5 6 7 8 9

  /external/compiler-rt/test/asan/TestCases/Darwin/
malloc_zone-protected.cc 15 malloc_zone_t *zone = malloc_create_zone(0, 0); local
16 zone->malloc = pwn;
17 void *v = malloc_zone_malloc(zone, 1);
malloc_set_zone_name-mprotect.cc 23 // Try to allocate a page-aligned malloc zone. Otherwise the mprotect() call
25 malloc_zone_t *zone = NULL; local
28 zone = malloc_create_zone(0, 0);
29 if (((uintptr_t)zone & (~0xfff)) == (uintptr_t)zone) {
35 printf("Warning: couldn't allocate a page-aligned zone.");
38 // malloc_set_zone_name() calls mprotect(zone, 4096, PROT_READ | PROT_WRITE),
39 // modifies the zone contents and then calls mprotect(zone, 4096, PROT_READ).
40 malloc_set_zone_name(zone, "foobar")
    [all...]
  /external/icu/icu4c/source/i18n/
udateintervalformat.cpp 47 TimeZone *zone = TimeZone::createTimeZone(UnicodeString((UBool)(tzIDLength == -1), tzID, tzIDLength)); local
48 if(zone == NULL) {
52 formatter->adoptTimeZone(zone);
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalZoneMonitor.java 22 * The ThermalZoneMonitor class runs a thread for each zone
30 private ThermalZone zone; field in class:ThermalZoneMonitor
35 zone = tz;
36 mThreadName = "ThermalZone" + zone.getZoneId();
49 if (zone.isZoneStateChanged()) {
50 zone.sendThermalEvent();
54 Thread.sleep(zone.getPollDelay(zone.getZoneState()));
  /external/icu/icu4c/source/samples/datefmt/answers/
main_0.cpp 17 * TimeZone::createTimeZone() will return a GMT zone object. In order
18 * to detect this error, we check the ID of the returned zone against
23 TimeZone* zone = TimeZone::createTimeZone(id); local
24 if (zone->getID(str) != id) {
25 delete zone;
28 printf(") returned zone with ID ");
33 return zone;
main_1.cpp 16 * TimeZone::createTimeZone() will return a GMT zone object. In order
17 * to detect this error, we check the ID of the returned zone against
22 TimeZone* zone = TimeZone::createTimeZone(id); local
23 if (zone->getID(str) != id) {
24 delete zone;
27 printf(") returned zone with ID ");
32 return zone;
main_2.cpp 16 * TimeZone::createTimeZone() will return a GMT zone object. In order
17 * to detect this error, we check the ID of the returned zone against
22 TimeZone* zone = TimeZone::createTimeZone(id); local
23 if (zone->getID(str) != id) {
24 delete zone;
27 printf(") returned zone with ID ");
32 return zone;
38 TimeZone *zone; local
62 zone = createZone("GMT"); // Create a GMT zone
    [all...]
main_3.cpp 16 * TimeZone::createTimeZone() will return a GMT zone object. In order
17 * to detect this error, we check the ID of the returned zone against
22 TimeZone* zone = TimeZone::createTimeZone(id); local
23 if (zone->getID(str) != id) {
24 delete zone;
27 printf(") returned zone with ID ");
32 return zone;
38 TimeZone *zone; local
62 zone = createZone("GMT"); // Create a GMT zone
    [all...]
  /external/v8/src/compiler/
value-numbering-reducer.h 16 explicit ValueNumberingReducer(Zone* zone);
22 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::FINAL
29 Zone* zone_;
common-node-cache.h 18 explicit CommonNodeCache(Zone* zone) : zone_(zone) {}
38 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::FINAL
45 Zone* zone_;
pipeline.h 48 Zone* zone() { return info_->zone(); } function in class:v8::internal::compiler::Pipeline
simplified-lowering.h 46 Zone* zone() { return jsgraph_->zone(); } function in class:v8::internal::compiler::SimplifiedLowering
  /external/v8/src/
type-info.h 11 #include "src/zone-inl.h"
24 Handle<Context> native_context, Zone* zone);
91 Zone* zone() const { return zone_; } function in class:v8::internal::TypeFeedbackOracle
120 Zone* zone_;
  /external/v8/test/cctest/compiler/
graph-builder-tester.cc 14 MachineCallHelper::MachineCallHelper(Zone* zone, MachineSignature* machine_sig)
15 : CallHelper(zone->isolate(), machine_sig),
26 parameters_ = graph_->zone()->NewArray<Node*>(param_count);
37 Zone* zone = graph_->zone(); local
38 CompilationInfo info(zone->isolate(), zone);
40 Linkage::GetSimplifiedCDescriptor(zone, machine_sig_))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_CT.h 10 __u16 zone; member in struct:xt_ct_target_info
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneAdapter.java 39 private TimeZone zone; field in class:TimeZoneAdapter
53 return zone;
59 public TimeZoneAdapter(TimeZone zone) {
60 this.zone = zone;
61 super.setID(zone.getID());
65 * TimeZone API; calls through to wrapped time zone.
69 zone.setID(ID);
73 * TimeZone API; calls through to wrapped time zone.
77 zone.hasSameRules(((TimeZoneAdapter)other).zone)
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_CT.h 31 __u16 zone; member in struct:xt_ct_target_info
41 __u16 zone; member in struct:xt_ct_target_info_v1
  /development/ndk/platforms/android-21/include/linux/netfilter/
xt_CT.h 31 __u16 zone; member in struct:xt_ct_target_info
41 __u16 zone; member in struct:xt_ct_target_info_v1
  /external/icu/icu4c/source/samples/datefmt/
main.cpp 16 * TimeZone::createTimeZone() will return a GMT zone object. In order
17 * to detect this error, we check the ID of the returned zone against
22 TimeZone* zone = TimeZone::createTimeZone(id); local
23 if (zone->getID(str) != id) {
24 delete zone;
27 printf(") returned zone with ID ");
32 return zone;
38 TimeZone *zone; local
62 zone = createZone("GMT"); // Create a GMT zone
    [all...]
  /external/iptables/include/linux/netfilter/
xt_CT.h 13 __u16 zone; member in struct:xt_ct_target_info
24 __u16 zone; member in struct:xt_ct_target_info_v1
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_CT.h 14 __u16 zone; member in struct:xt_ct_target_info
25 __u16 zone; member in struct:xt_ct_target_info_v1
  /external/v8/src/test/
test-utils.h 10 #include "src/zone.h"
75 Zone* zone() { return &zone_; } function in class:v8::internal::TestWithZone
78 Zone zone_;
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/netfilter/
xt_CT.h 31 __u16 zone; member in struct:xt_ct_target_info
41 __u16 zone; member in struct:xt_ct_target_info_v1
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/netfilter/
xt_CT.h 31 __u16 zone; member in struct:xt_ct_target_info
41 __u16 zone; member in struct:xt_ct_target_info_v1
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/netfilter/
xt_CT.h 31 __u16 zone; member in struct:xt_ct_target_info
41 __u16 zone; member in struct:xt_ct_target_info_v1

Completed in 1784 milliseconds

1 2 3 4 5 6 7 8 9