Searched defs:allow (Results 1 - 25 of 68) sorted by relevance

123

/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DAllowParser.java45 * @param allow the header to parse
47 public AllowParser(String allow) { argument
48 super(allow);
73 Allow allow = new Allow();
74 allow.setHeaderName(SIPHeaderNames.ALLOW);
79 allow.setMethod(token.getTokenValue());
81 list.add(allow);
87 allow = new Allow();
90 allow.setMethod(token.getTokenValue());
92 list.add(allow);
[all...]
/external/vixl/src/
H A Dassembler-base-vixl.h69 void SetAllowAssembler(bool allow) { allow_assembler_ = allow; } argument
71 // CodeBufferCheckScope must be able to temporarily allow the assembler.
/external/apache-http/src/org/apache/http/client/params/
H A DClientParamBean.java74 public void setAllowCircularRedirects (final boolean allow) { argument
75 params.setBooleanParameter(ClientPNames.ALLOW_CIRCULAR_REDIRECTS, allow);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DSortedSetRelation.java70 * @param allow filter, using ANY, CONTAINS, etc.
74 public static <T extends Object & Comparable<? super T>> boolean hasRelation(SortedSet<T> a, int allow, SortedSet<T> b) { argument
75 if (allow < NONE || allow > ANY) {
76 throw new IllegalArgumentException("Relation " + allow + " out of range");
82 boolean anb = (allow & A_NOT_B) != 0;
83 boolean ab = (allow & A_AND_B) != 0;
84 boolean bna = (allow & B_NOT_A) != 0;
87 switch(allow) {
/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_capture_options.h83 void set_allow_use_magnification_api(bool allow) { argument
84 allow_use_magnification_api_ = allow;
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
H A DPeriodBuilderFactory.java61 PeriodBuilderFactory setAllowZero(boolean allow); argument
72 * when milliseconds are an available field. The default is to allow
78 * @param allow whether milliseconds should be allowed.
81 PeriodBuilderFactory setAllowMilliseconds(boolean allow); argument
H A DBasicPeriodBuilderFactory.java122 Settings setAllowZero(boolean allow) { argument
123 if (this.allowZero == allow) {
127 result.allowZero = allow;
237 public PeriodBuilderFactory setAllowZero(boolean allow) { argument
238 settings = settings.setAllowZero(allow);
249 public PeriodBuilderFactory setAllowMilliseconds(boolean allow) { argument
250 settings = settings.setAllowMilliseconds(allow);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSortedSetRelation.java68 * @param allow filter, using ANY, CONTAINS, etc.
72 public static <T extends Object & Comparable<? super T>> boolean hasRelation(SortedSet<T> a, int allow, SortedSet<T> b) { argument
73 if (allow < NONE || allow > ANY) {
74 throw new IllegalArgumentException("Relation " + allow + " out of range");
80 boolean anb = (allow & A_NOT_B) != 0;
81 boolean ab = (allow & A_AND_B) != 0;
82 boolean bna = (allow & B_NOT_A) != 0;
85 switch(allow) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DPeriodBuilderFactory.java59 PeriodBuilderFactory setAllowZero(boolean allow); argument
70 * when milliseconds are an available field. The default is to allow
76 * @param allow whether milliseconds should be allowed.
79 PeriodBuilderFactory setAllowMilliseconds(boolean allow); argument
H A DBasicPeriodBuilderFactory.java121 Settings setAllowZero(boolean allow) { argument
122 if (this.allowZero == allow) {
126 result.allowZero = allow;
236 public PeriodBuilderFactory setAllowZero(boolean allow) { argument
237 settings = settings.setAllowZero(allow);
248 public PeriodBuilderFactory setAllowMilliseconds(boolean allow) { argument
249 settings = settings.setAllowMilliseconds(allow);
/external/webrtc/webrtc/base/
H A Dfirewallsocketserver.h51 void AddRule(bool allow, FirewallProtocol p = FP_ANY,
54 void AddRule(bool allow, FirewallProtocol p,
79 bool allow; member in struct:rtc::FirewallSocketServer::Rule
102 void AddRule(bool allow, FirewallProtocol p = FP_ANY,
H A Dfirewallsocketserver.cc126 void FirewallSocketServer::AddRule(bool allow, FirewallProtocol p, argument
131 AddRule(allow, p, any, addr);
134 AddRule(allow, p, addr, any);
139 void FirewallSocketServer::AddRule(bool allow, FirewallProtocol p, argument
143 r.allow = allow;
172 return r.allow;
234 void FirewallManager::AddRule(bool allow, FirewallProtocol p, argument
239 (*it)->AddRule(allow, p, d, addr);
H A Dthread.cc271 bool Thread::SetAllowBlockingCalls(bool allow) { argument
274 blocking_calls_allowed_ = allow;
391 // - thread sending exits: We don't allow this, since thread can exit
/external/libchrome/base/files/
H A Dfile_path_watcher_unittest.cc551 // would be preferable and allow testing file attributes and symlinks.
574 // would be preferable and allow testing file attributes and symlinks.
651 // would be preferable and allow testing file attributes and symlinks.
843 bool ChangeFilePermissions(const FilePath& path, Permission perm, bool allow) { argument
864 if (allow) {
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dbpf_dsl_unittest.cc439 ResultExpr allow = Allow(); local
440 EXPECT_TRUE(allow->IsAllow());
441 EXPECT_FALSE(allow->IsDeny());
462 ResultExpr allow = Allow(); local
463 EXPECT_FALSE(allow->HasUnsafeTraps());
472 ResultExpr maybe = If(arg == 0, allow).Else(unsafe);
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer.h222 // Set true to allow floats to be suffixed with the letter 'f'. Tokens
246 // Whether to allow string literals to span multiple lines. Default is false.
248 void set_allow_multiline_strings(bool allow) { argument
249 allow_multiline_strings_ = allow;
/external/robolectric/v1/src/main/java/android/webkit/
H A DTestWebSettings.java43 public void setAllowFileAccessFromFileURLs(boolean allow) { argument
44 allowFileAccessFromFile = allow;
48 public void setAllowUniversalAccessFromFileURLs(boolean allow) { argument
49 allowUniversalAccessFromFile = allow;
58 public void setAllowFileAccess(boolean allow) { argument
59 allowFileAccess = allow;
/external/selinux/libsepol/src/
H A Dassertion.c44 ERR(handle, "neverallow on line %lu of %s (or line %lu of policy.conf) violated by allow %s %s:%s {%s };",
51 ERR(handle, "neverallow on line %lu violated by allow %s %s:%s {%s };",
57 ERR(handle, "neverallow violated by allow %s %s:%s {%s };",
88 static int check_extended_permissions(av_extended_perms_t *neverallow, avtab_extended_perms_t *allow) argument
92 && (allow->specified == AVTAB_XPERMS_IOCTLFUNCTION)) {
93 if (neverallow->driver == allow->driver)
94 rc = extended_permissions_and(neverallow->perms, allow->perms);
96 && (allow->specified == AVTAB_XPERMS_IOCTLDRIVER)) {
97 rc = xperm_test(neverallow->driver, allow->perms);
99 && (allow
110 extended_permissions_violated(avtab_extended_perms_t *result, av_extended_perms_t *neverallow, avtab_extended_perms_t *allow) argument
[all...]
/external/curl/src/
H A Dtool_paramhlp.c292 enum e_action { allow, deny, set } action = allow; enumerator in enum:e_action
306 action = allow;
320 case allow:
/external/libchrome/base/synchronization/
H A Dcondition_variable_unittest.cc112 void SetAllowHelp(bool allow);
298 // Wait to allow the all workers to get done.
322 // Wait to allow the 3 workers to get done.
343 // Wait to allow the 3 workers to get done.
364 // Wait to allow the 10 workers to get done.
383 // Wait to allow the 10 workers to get done.
415 // Wait a bit more to allow threads to reach their wait state.
666 void WorkQueue::SetAllowHelp(bool allow) { argument
667 allow_help_requests_ = allow;
/external/protobuf/src/google/protobuf/
H A Dtext_format.h442 void AllowPartialMessage(bool allow) { argument
443 allow_partial_ = allow;
450 void AllowCaseInsensitiveField(bool allow) { argument
451 allow_case_insensitive_field_ = allow;
460 void AllowFieldNumber(bool allow) { argument
461 allow_field_number_ = allow;
/external/skia/src/pathops/
H A DSkDConicLineIntersection.cpp24 i->setMax(4); // allow short partial coincidence plus discrete intersection
34 void allowNear(bool allow) { argument
35 fAllowNear = allow;
H A DSkDCubicLineIntersection.cpp93 void allowNear(bool allow) { argument
94 fAllowNear = allow;
H A DSkDQuadLineIntersection.cpp102 i->setMax(5); // allow short partial coincidence plus discrete intersections
112 void allowNear(bool allow) { argument
113 fAllowNear = allow;
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
H A Dseccomp_bpf_tests.c70 #define SECCOMP_RET_ALLOW 0x7fff0000U // allow
514 struct sock_fprog allow; local
559 FILTER_ALLOC(allow);
568 FILTER_FREE(allow);
581 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow);
602 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow);
625 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow);
646 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow);
665 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow);
684 ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &self->allow);
[all...]

Completed in 2355 milliseconds

123