Searched refs:info (Results 176 - 200 of 4416) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/resources/net_internals/
H A Dhttpcacheview.js14 // Register to receive http cache info.
20 HttpCacheView.prototype.onHttpCacheInfoChanged = function(info) {
25 for (var statName in info.stats) {
27 addTextNode(li, statName + ': ' + info.stats[statName]);
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
H A Dshim_entry.c18 void _pnacl_wrapper_start(uint32_t *info) { argument
19 Elf32_auxv_t *auxv = nacl_startup_auxv(info);
56 _start(info);
/external/elfutils/libdw/
H A Ddwarf_filesrc.c66 *mtime = file->info[idx].mtime;
69 *length = file->info[idx].length;
71 return file->info[idx].name;
/external/iptables/extensions/
H A Dlibxt_osf.c66 struct xt_osf_info *info = cb->data; local
72 info->flags |= XT_OSF_INVERT;
73 info->len = strlen(info->genre);
76 info->flags |= XT_OSF_TTL;
79 info->flags |= XT_OSF_LOG;
86 const struct xt_osf_info *info = (const struct xt_osf_info*) match->data; local
88 printf(" OS fingerprint match %s%s", (info->flags & XT_OSF_INVERT) ? "! " : "", info->genre);
93 const struct xt_osf_info *info local
[all...]
H A Dlibxt_RATEEST.c89 struct xt_rateest_target_info *info = (void *)(*target)->data; local
91 RATEEST_info = info;
100 strncpy(info->name, optarg, sizeof(info->name) - 1);
134 struct xt_rateest_target_info *info = RATEEST_info; local
143 for (info->interval = 0; info->interval <= 5; info->interval++) {
144 if (interval <= (1 << info->interval) * (TIME_UNITS_PER_SEC / 4))
148 if (info
168 const struct xt_rateest_target_info *info = (const void *)target->data; local
[all...]
H A Dlibxt_NFLOG.c43 struct xt_nflog_info *info = (struct xt_nflog_info *)t->data; local
45 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD;
60 static void nflog_print(const struct xt_nflog_info *info, char *prefix) argument
62 if (info->prefix[0] != '\0') {
64 xtables_save_string(info->prefix);
66 if (info->group)
67 printf(" %snflog-group %u", prefix, info->group);
68 if (info->len)
69 printf(" %snflog-range %u", prefix, info->len);
70 if (info
77 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data; local
84 const struct xt_nflog_info *info = (struct xt_nflog_info *)target->data; local
[all...]
/external/chromium/base/
H A Dsys_info_posix.cc57 utsname info; local
58 if (uname(&info) < 0) {
62 return std::string(info.sysname);
67 utsname info; local
68 if (uname(&info) < 0) {
72 return std::string(info.release);
77 utsname info; local
78 if (uname(&info) < 0) {
82 return std::string(info.machine);
/external/chromium/chrome/browser/download/
H A Ddownload_file.cc16 DownloadFile::DownloadFile(const DownloadCreateInfo* info, argument
18 : BaseFile(info->save_info.file_path,
19 info->url(),
20 info->referrer_url,
21 info->received_bytes,
22 info->save_info.file_stream),
23 id_(info->download_id),
24 child_id_(info->child_id),
25 request_id_(info->request_id),
/external/chromium_org/base/
H A Dsys_info_posix.cc55 struct utsname info; local
56 if (uname(&info) < 0) {
60 return std::string(info.sysname);
67 struct utsname info; local
68 if (uname(&info) < 0) {
72 return std::string(info.release);
78 struct utsname info; local
79 if (uname(&info) < 0) {
83 std::string arch(info.machine);
/external/chromium_org/chrome/app/
H A Ddelay_load_hook_win.cc30 FARPROC OnPreLoadLibrary(DelayLoadInfo* info) { argument
34 std::string dll_name(info->szDll);
54 DelayLoadInfo* info) {
62 return OnPreLoadLibrary(info);
53 ChromeDelayLoadHook(unsigned reason, DelayLoadInfo* info) argument
H A Ddelay_load_hook_win.h16 DelayLoadInfo* info);
/external/chromium_org/net/dns/
H A Dmapped_host_resolver.cc26 RequestInfo info = original_info; local
27 int rv = ApplyRules(&info);
31 return impl_->Resolve(info, addresses, callback, out_req, net_log);
37 RequestInfo info = original_info; local
38 int rv = ApplyRules(&info);
42 return impl_->ResolveFromCache(info, addresses, net_log);
53 int MappedHostResolver::ApplyRules(RequestInfo* info) const {
54 HostPortPair host_port(info->host_port_pair());
58 info->set_host_port_pair(host_port);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8CanvasRenderingContext2DCustom.cpp71 void V8CanvasRenderingContext2D::strokeStyleAttrGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) argument
73 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toNative(info.Holder());
74 v8SetReturnValue(info, toV8Object(impl->strokeStyle(), info.Holder(), info.GetIsolate()));
77 void V8CanvasRenderingContext2D::strokeStyleAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) argument
79 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toNative(info.Holder());
83 impl->setStrokeStyle(toCanvasStyle(value, info.GetIsolate()));
86 void V8CanvasRenderingContext2D::fillStyleAttrGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) argument
88 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toNative(info
92 fillStyleAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info) argument
[all...]
H A DV8HTMLPlugInElementCustom.cpp47 static void npObjectNamedGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) argument
49 HTMLPlugInElement* imp = C::toNative(info.Holder());
58 npObjectGetNamedProperty(instance, name, info);
62 static void npObjectNamedSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
64 HTMLPlugInElement* imp = C::toNative(info.Holder());
73 npObjectSetNamedProperty(instance, name, value, info);
76 void V8HTMLAppletElement::namedPropertyGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) argument
78 npObjectNamedGetter<V8HTMLAppletElement>(name, info);
81 void V8HTMLEmbedElement::namedPropertyGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) argument
83 npObjectNamedGetter<V8HTMLEmbedElement>(name, info);
86 namedPropertyGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) argument
91 namedPropertySetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
96 namedPropertySetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
101 namedPropertySetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
122 npObjectIndexedGetter(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) argument
137 npObjectIndexedSetter(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
151 indexedPropertyGetterCustom(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) argument
156 indexedPropertyGetterCustom(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) argument
161 indexedPropertyGetterCustom(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) argument
166 indexedPropertySetterCustom(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
171 indexedPropertySetterCustom(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
176 indexedPropertySetterCustom(uint32_t index, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info) argument
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkGetCondensedInfo.cpp64 const SkMemberInfo* info = SkMemberInfo::Find(type, matchPtr); local
65 SkASSERT(info);
66 return info;
71 const SkMemberInfo* info = gInfoTables[lookup]; local
72 if (info->fType == SkType_BaseClassInfo) {
73 int baseTypeLookup = info->fOffset;
79 info++;
81 SkASSERT(info->fType != SkType_BaseClassInfo);
84 int index = _searchByName(&info->fName, count, strings, match);
87 return &info[inde
92 const SkMemberInfo* info = gInfoTables[lookup]; local
[all...]
/external/chromium_org/v8/src/
H A Drewriter.h44 static bool Rewrite(CompilationInfo* info);
H A Dcodegen.cc62 void CodeGenerator::MakeCodePrologue(CompilationInfo* info, const char* kind) { argument
67 if (info->isolate()->bootstrapper()->IsActive()) {
79 if (info->IsStub()) {
81 CodeStub::MajorName(info->code_stub()->MajorKey(), true);
84 PrintF("%s", *info->function()->debug_name()->ToCString());
90 if (!info->IsStub() && print_source) {
92 PrettyPrinter().PrintProgram(info->function()));
95 if (!info->IsStub() && print_ast) {
97 AstPrinter().PrintProgram(info->function()));
105 CompilationInfo* info) {
103 MakeCodeEpilogue(MacroAssembler* masm, Code::Flags flags, CompilationInfo* info) argument
126 PrintCode(Handle<Code> code, CompilationInfo* info) argument
[all...]
/external/compiler-rt/test/timing/
H A Dtiming.h12 mach_timebase_info_data_t info; local
13 kern_return_t err = mach_timebase_info( &info );
23 conversion = (double) freq * (1e-9 * (double) info.numer / (double) info.denom);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCallInfo.java50 protected GenericURI info; field in class:CallInfo
69 info.encode(buffer);
93 return info;
111 * @param info is the URI to set.
113 public void setInfo(javax.sip.address.URI info) { argument
114 this.info = (GenericURI) info;
119 if (this.info != null)
120 retval.info = (GenericURI) this.info
[all...]
/external/skia/src/animator/
H A DSkGetCondensedInfo.cpp64 const SkMemberInfo* info = SkMemberInfo::Find(type, matchPtr); local
65 SkASSERT(info);
66 return info;
71 const SkMemberInfo* info = gInfoTables[lookup]; local
72 if (info->fType == SkType_BaseClassInfo) {
73 int baseTypeLookup = info->fOffset;
79 info++;
81 SkASSERT(info->fType != SkType_BaseClassInfo);
84 int index = _searchByName(&info->fName, count, strings, match);
87 return &info[inde
92 const SkMemberInfo* info = gInfoTables[lookup]; local
[all...]
/external/v8/src/
H A Drewriter.h44 static bool Rewrite(CompilationInfo* info);
/external/valgrind/main/none/tests/linux/
H A Dblockfault.c6 static void handler(int sig, siginfo_t *info, void *v) argument
8 printf("info: sig=%d code=%d addr=%p\n",
9 info->si_signo, info->si_code, info->si_addr);
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_winsys.c104 struct drm_radeon_info info; local
107 memset(&info, 0, sizeof(info));
125 info.value = (unsigned long)&value;
126 info.request = request;
128 &info, sizeof(info)) != 0) {
153 struct drm_radeon_info info; local
156 memset(&info, 0, sizeof(info));
335 radeon_query_info(struct radeon_winsys *rws, struct radeon_info *info) argument
[all...]
/external/mesa3d/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_winsys.c104 struct drm_radeon_info info; local
107 memset(&info, 0, sizeof(info));
125 info.value = (unsigned long)&value;
126 info.request = request;
128 &info, sizeof(info)) != 0) {
153 struct drm_radeon_info info; local
156 memset(&info, 0, sizeof(info));
335 radeon_query_info(struct radeon_winsys *rws, struct radeon_info *info) argument
[all...]
/external/chromium_org/ui/gl/
H A Dgl_surface_win.cc102 BITMAPV4HEADER info = { sizeof(BITMAPV4HEADER) }; local
103 info.bV4Width = size.width();
104 info.bV4Height = -size.height();
105 info.bV4Planes = 1;
106 info.bV4BitCount = 32;
107 info.bV4V4Compression = BI_BITFIELDS;
108 info.bV4RedMask = 0x000000FF;
109 info.bV4GreenMask = 0x0000FF00;
110 info.bV4BlueMask = 0x00FF0000;
111 info
146 BITMAPV4HEADER info = { sizeof(BITMAPV4HEADER) }; local
[all...]

Completed in 1563 milliseconds

1234567891011>>