Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:title_w
(Results
1 - 2
of
2
) sorted by relevance
/third_party/node/deps/uv/src/win/
H
A
D
util.c
397
WCHAR*
title_w
= NULL;
in uv_set_process_title()
local
409
title_w
= (WCHAR*)uv__malloc(sizeof(WCHAR) * length);
in uv_set_process_title()
410
if (!
title_w
) {
in uv_set_process_title()
414
length = MultiByteToWideChar(CP_UTF8, 0, title, -1,
title_w
, length);
in uv_set_process_title()
422
title_w
[MAX_TITLE_LENGTH - 1] = L'\0';
in uv_set_process_title()
425
if (!SetConsoleTitleW(
title_w
)) {
in uv_set_process_title()
438
uv__free(
title_w
);
in uv_set_process_title()
444
WCHAR
title_w
[MAX_TITLE_LENGTH];
in uv__get_process_title()
local
446
if (!GetConsoleTitleW(
title_w
, sizeof(
title_w
) / sizeo
in uv__get_process_title()
[all...]
/third_party/libuv/src/win/
H
A
D
util.c
353
WCHAR*
title_w
= NULL;
in uv_set_process_title()
local
357
err = uv__convert_utf8_to_utf16(title, &
title_w
);
in uv_set_process_title()
362
length = wcslen(
title_w
);
in uv_set_process_title()
364
title_w
[MAX_TITLE_LENGTH - 1] = L'\0';
in uv_set_process_title()
366
if (!SetConsoleTitleW(
title_w
)) {
in uv_set_process_title()
379
uv__free(
title_w
);
in uv_set_process_title()
385
WCHAR
title_w
[MAX_TITLE_LENGTH];
in uv__get_process_title()
local
388
wlen = GetConsoleTitleW(
title_w
, sizeof(
title_w
) / sizeof(WCHAR));
in uv__get_process_title()
392
return uv__convert_utf16_to_utf8(
title_w
, wle
in uv__get_process_title()
[all...]
Completed in 2 milliseconds