/system/update_engine/common/ |
multi_range_http_fetcher.cc | 183 std::string range_str = base::StringPrintf("%jd+", offset()); local 185 range_str += std::to_string(length()); 187 range_str += "?"; 188 return range_str;
|
/external/swiftshader/third_party/subzero/pydir/ |
bisection-tool.py | 42 range_str = str(i) 44 range_str = '{start}:{end}'.format(start=i[0], end=i[1]) 46 cmd_addition += ',' + range_str 48 cmd_addition += ' -i ' + range_str
|
/system/update_engine/scripts/ |
update_device.py | 106 def _parse_range(range_str, file_size): 110 range_str: HTTP Range header in the request, not including "Header:". 119 if range_str: 120 range_str = range_str.split('=', 1)[1] 121 s, e = range_str.split('-', 1)
|
/external/clang/test/CodeGenObjC/ |
nsvalue-objc-boxable-ios-arc.m | 7 // CHECK: [[RANGE_STR:.*]] = {{.*}}_NSRange=II{{.*}} 27 // CHECK: call {{.*objc_msgSend.*}}(i8* [[RECV]], i8* [[SEL]], i8* [[PARAM_CAST]], i8* {{.*}}[[RANGE_STR]]{{.*}}) 120 // CHECK: call {{.*objc_msgSend.*}}(i8* [[RECV]], i8* [[SEL]], i8* [[COERCE_CAST]], i8* {{.*}}[[RANGE_STR]]{{.*}})
|
nsvalue-objc-boxable-ios.m | 7 // CHECK: [[RANGE_STR:.*]] = {{.*}}_NSRange=II{{.*}} 27 // CHECK: call {{.*objc_msgSend.*}}(i8* [[RECV]], i8* [[SEL]], i8* [[PARAM_CAST]], i8* {{.*}}[[RANGE_STR]]{{.*}}) 110 // CHECK: call {{.*objc_msgSend.*}}(i8* [[RECV]], i8* [[SEL]], i8* [[COERCE_CAST]], i8* {{.*}}[[RANGE_STR]]{{.*}})
|
nsvalue-objc-boxable-mac-arc.m | 7 // CHECK: [[RANGE_STR:.*]] = {{.*}}_NSRange=QQ{{.*}} 27 // CHECK: call {{.*objc_msgSend.*}}(i8* [[RECV]], i8* [[SEL]], i8* [[PARAM_CAST]], i8* {{.*}}[[RANGE_STR]]{{.*}}) 124 // CHECK: call {{.*objc_msgSend.*}}(i8* [[RECV]], i8* [[SEL]], i8* [[COERCE_CAST]], i8* {{.*}}[[RANGE_STR]]{{.*}})
|
nsvalue-objc-boxable-mac.m | 7 // CHECK: [[RANGE_STR:.*]] = {{.*}}_NSRange=QQ{{.*}} 27 // CHECK: call {{.*objc_msgSend.*}}(i8* [[RECV]], i8* [[SEL]], i8* [[PARAM_CAST]], i8* {{.*}}[[RANGE_STR]]{{.*}}) 114 // CHECK: call {{.*objc_msgSend.*}}(i8* [[RECV]], i8* [[SEL]], i8* [[COERCE_CAST]], i8* {{.*}}[[RANGE_STR]]{{.*}})
|
/external/selinux/libsepol/cil/src/ |
cil_reset_ast.c | 132 if (selinuxuser->range_str == NULL) { 204 if (rangetrans->range_str == NULL) { 266 if (userrange->range_str == NULL) { 273 if (context->range_str == NULL) {
|
cil_internal.h | 474 char *range_str; member in struct:cil_userrange 488 char *range_str; member in struct:cil_selinuxuser 580 char *range_str; member in struct:cil_rangetransition 718 char *range_str; member in struct:cil_context
|
cil_write_ast.c | 346 char *range_str = NULL; local 351 if (context->range_str != NULL) { 352 range_str = strdup(context->range_str); 353 if (range_str == NULL) { 359 rc = cil_unfill_levelrange(context->range, &range_str); 364 + strlen(range_str) + 6; 366 if (sprintf(*out_str, "(%s %s %s %s)", user_str, role_str, type_str, range_str) < 0) { 373 free(range_str); 582 if (usrrng->range_str != NULL) [all...] |
cil_copy_ast.c | 474 if (orig->range_str != NULL) { 475 new->range_str = orig->range_str; 756 if (orig->range_str != NULL) { 757 new->range_str = orig->range_str; 1071 if (data->range_str != NULL) { 1072 new->range_str = data->range_str; [all...] |
cil_resolve_ast.c | 704 if (rangetrans->range_str != NULL) { 705 rc = cil_resolve_name(current, rangetrans->range_str, CIL_SYM_LEVELRANGES, extra_args, &range_datum); 711 /* This could still be an anonymous levelrange even if range_str is set, if range_str is a param_str*/ 926 if (userrange->range_str != NULL) { 927 rc = cil_resolve_name(current, userrange->range_str, CIL_SYM_LEVELRANGES, extra_args, &range_datum); 1004 if (selinuxuser->range_str != NULL) { 1005 rc = cil_resolve_name(current, selinuxuser->range_str, CIL_SYM_LEVELRANGES, extra_args, &lvlrange_datum); 1011 /* This could still be an anonymous levelrange even if range_str is set, if range_str is a param_str* [all...] |
cil_tree.c | 651 } else if (context->range_str != NULL) { 652 cil_log(CIL_INFO, " %s", context->range_str); 790 } else if (userrange->range_str != NULL) { 791 cil_log(CIL_INFO, " %s", userrange->range_str); 1156 cil_log(CIL_INFO, " %s", rangetrans->range_str); [all...] |
cil_build_ast.c | [all...] |
cil.c | [all...] |
cil_verify.c | 786 ctx->range_str, ctx->user_str); 797 ctx->range_str, ctx->user_str); [all...] |
/bootable/recovery/update_verifier/ |
update_verifier.cpp | 76 static bool read_blocks(const std::string& partition, const std::string& range_str) { 133 RangeSet ranges = RangeSet::Parse(range_str); 135 LOG(ERROR) << "Error parsing RangeSet string " << range_str;
|
/system/update_engine/ |
libcurl_http_fetcher.cc | 232 string range_str = base::StringPrintf( local 235 range_str += std::to_string(end_offset); 236 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_RANGE, range_str.c_str()),
|
/external/selinux/libsepol/cil/test/unit/ |
test_cil_copy_ast.c | 989 CuAssertStrEquals(tc, test_copy->packet_context->range_str, 990 ((struct cil_netifcon *)test_ast_node->data)->packet_context->range_str); [all...] |
/external/selinux/libsemanage/src/ |
pywrap-test.py | 209 range_str = str(low) 211 range_str = str(low) + "-" + str(high) 214 print "Port: ", range_str, " ", proto_str, " Context: ", con_str [all...] |
/external/selinux/libsepol/src/ |
kernel_to_conf.c | 1852 char *range_str = NULL; local [all...] |
kernel_to_cil.c | 1884 char *range_str = NULL; local [all...] |