HomeSort by relevance Sort by last modified time
    Searched full:record (Results 251 - 275 of 7466) sorted by null

<<11121314151617181920>>

  /external/selinux/libsemanage/include/semanage/
nodes_policy.h 20 int (*handler) (const semanage_node_t * record,
ports_policy.h 20 int (*handler) (const semanage_port_t * record,
seusers_policy.h 22 record, void *varg),
users_policy.h 20 int (*handler) (const semanage_user_t * record,
  /external/selinux/policycoreutils/semanage/
semanage-interface.8 30 Add a record of the specified object type
33 Delete a record of the specified object type
36 Modify a record of the specified object type
51 MLS/MCS Security Range (MLS/MCS Systems only) SELinux Range for SELinux login mapping defaults to the SELinux user record range. SELinux Range for SELinux user defaults to s0.
semanage-node.8 30 Add a record of the specified object type
33 Delete a record of the specified object type
36 Modify a record of the specified object type
54 MLS/MCS Security Range (MLS/MCS Systems only) SELinux Range for SELinux login mapping defaults to the SELinux user record range. SELinux Range for SELinux user defaults to s0.
  /external/valgrind/memcheck/tests/
trivialleak.stderr.exp 1 1,000 bytes in 1,000 blocks are definitely lost in loss record ... of ...
trivialleak.stderr.exp2 1 999 bytes in 999 blocks are definitely lost in loss record ... of ...
  /frameworks/base/tools/preload/
Android.mk 15 Record.java \
  /libcore/ojluni/src/main/java/java/util/logging/
Filter.java 44 * Check if a given log record should be published.
45 * @param record a LogRecord
46 * @return true if the log record should be published.
48 public boolean isLoggable(LogRecord record);
  /toolchain/binutils/binutils-2.25/include/vms/
egsd.h 26 #define EGSD__K_ENTRIES 2 /* Offset to first entry in record. */
27 #define EGSD__C_ENTRIES 2 /* Offset to first entry in record. */
39 /* Record type. */
42 /* Record size. */
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-srec/
sr1.c 1 /* This file is compiled and linked into the S-record format. */
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/
record.py 49 %(record)s
60 super(ResourceRecordSets, self).__init__([('ResourceRecordSet', Record)])
66 record_list = ','.join([record.__repr__() for record in self])
84 :param type: The DNS record type. Valid values are:
98 :param ttl: The resource record cache time to live (TTL), in seconds.
101 :param alias_dns_name: *Alias resource record sets only* The value
106 :param alias_hosted_zone_id: *Alias resource record sets only*
110 :param identifier: *Weighted and latency-based resource record sets
112 record sets that have the same combination of DNS name and type
    [all...]
  /external/autotest/client/site_tests/audio_AlsaLoopback/
audio_AlsaLoopback.py 28 # Record a sample of "silence" to use as a noise profile.
29 alsa_utils.record(noise_file, duration=1)
35 alsa_utils.record(recorded_file, duration=TEST_DURATION)
  /external/autotest/client/site_tests/touch_TapSettings/
README 3 motion (i.e. do not record multipe taps or drags). Having the drag stop in the
10 drag your finger to the right to record a drag action.
12 <DEVICE NAME>_touchpad_Touch ID_tap-click - Tap on touchpad and record the gestures.
  /external/autotest/server/control_segments/
repair 17 job.record('START', None, 'repair')
38 job.record('END FAIL', None, 'repair')
43 job.record('END GOOD', None, 'repair',
reset 16 job.record('START', None, 'reset')
32 job.record('END FAIL', None, 'reset')
37 job.record('END GOOD', None, 'reset',
verify 19 job.record('START', None, 'verify')
28 job.record('END FAIL', None, 'verify')
33 job.record('END GOOD', None, 'verify',
  /external/avahi/avahi-core/
response-sched.h 33 int avahi_response_scheduler_post(AvahiResponseScheduler *s, AvahiRecord *record, int flush_cache, const AvahiAddress *querier, int immediately);
34 void avahi_response_scheduler_incoming(AvahiResponseScheduler *s, AvahiRecord *record, int flush_cache);
35 void avahi_response_scheduler_suppress(AvahiResponseScheduler *s, AvahiRecord *record, const AvahiAddress *querier);
  /external/chromium-trace/catapult/devil/devil/utils/
run_tests_helper.py 23 def format(self, record):
26 msg = logging.Formatter.format(self, record)
30 return '%s %8.3fs %s' % (record.levelname[0], timediff, msg)
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
mock_logging_handler.py 27 def emit(self, record):
28 self.messages[record.levelname.lower()].append(record.getMessage())
  /external/clang/test/Index/
pch-with-errors.m 26 // RUN: c-index-test -write-pch %t.h.pch %s -Xclang -detailed-preprocessing-record
27 // RUN: c-index-test -test-load-source local %s -include %t.h -Xclang -detailed-preprocessing-record | FileCheck -check-prefix=CHECK-PARSE %s
28 // RUN: c-index-test -index-file %s -include %t.h -Xclang -detailed-preprocessing-record | FileCheck -check-prefix=CHECK-INDEX %s
  /external/icu/icu4c/source/layout/
PairPositioningSubtables.cpp 138 const PairValueRecord *record = records; local
141 if (SWAPW(record->secondGlyph) == glyphID) {
142 return record;
145 record = (const PairValueRecord *) ((char *) record + recordSize);
152 const PairValueRecord *record = records;
153 const PairValueRecord *trial = (const PairValueRecord *) ((char *) record + extra);
156 record = trial;
161 trial = (const PairValueRecord *) ((char *) record + probe);
164 record = trial
    [all...]
  /external/libchrome/base/trace_event/
trace_config_memory_test_util.h 38 "\"record_mode\":\"record-until-full\""
55 "\"record_mode\":\"record-until-full\""
68 "\"record_mode\":\"record-until-full\""
  /external/skia/src/core/
SkRecord.cpp 30 bytes += fReserved * sizeof(Record);
39 Record* noops = std::remove_if(fRecords.get(), fRecords.get() + fCount,
40 [](Record op) { return op.type() == SkRecords::NoOp_Type; });

Completed in 1575 milliseconds

<<11121314151617181920>>