Searched defs:self (Results 226 - 250 of 316) sorted by relevance

1234567891011>>

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dhist.c405 struct hist_entry *__hists__add_mem_entry(struct hists *self, argument
428 .hists = self,
432 return add_hist_entry(self, &entry, al, period, weight);
435 struct hist_entry *__hists__add_branch_entry(struct hists *self, argument
459 .hists = self,
463 return add_hist_entry(self, &entry, al, period, weight);
466 struct hist_entry *__hists__add_entry(struct hists *self, argument
487 .hists = self,
492 return add_hist_entry(self, &entry, al, period, weight);
/external/ltrace/
H A Dprototype.c335 struct protolib_cache *self; member in struct:load_config_data
358 data->result = consider_config_dir(data->self,
439 struct protolib_cache *self = data; local
444 = protolib_cache_file(self, entry->pathname, 0);
447 || protolib_add_import(&self->imports, new_import) < 0)
/external/ltrace/sysdeps/linux-gnu/ppc/
H A Dplt.c683 struct ppc_unresolve_data *self; /* A canary. */ member in struct:ppc_unresolve_data
801 libsym->arch.data->self = libsym->arch.data;
829 struct process_stopping_handler *self = proc->arch.handler; local
830 assert(self != NULL);
832 struct library_symbol *libsym = self->breakpoint_being_enabled->libsym;
853 cb_on_all_stopped(struct process_stopping_handler *self) argument
856 assert(self->task_enabling_breakpoint->arch.handler == NULL);
857 self->task_enabling_breakpoint->arch.handler = self;
859 linux_ptrace_disable_and_continue(self);
863 cb_keep_stepping_p(struct process_stopping_handler *self) argument
[all...]
/external/oprofile/libpp/
H A Dcallgraph_container.cpp226 symbol_entry const * self = pc.find(sym); local
227 if (self)
228 sym.sample.counts = self->sample.counts;
306 // generate the synthetic self entry for the symbol
307 symbol_entry self = sym; local
309 self.name = symbol_names.create(symbol_names.demangle(self.name)
310 + " [self]");
312 sym.total_callee_count += self.sample.counts;
313 sym.callees.push_back(self);
[all...]
/external/srec/shared/src/
H A DSessionTypeImpl.c39 ESR_ReturnCode ESR_SessionTypeCreate(ESR_SessionType** self) argument
45 if (self == NULL)
107 *self = Interface;
120 ESR_ReturnCode ESR_SessionTypeGetPropertyImpl(ESR_SessionType* self, argument
124 ESR_SessionTypeData* data = self->data;
141 ESR_ReturnCode ESR_SessionTypeGetIntImpl(ESR_SessionType* self, argument
148 data = self->data;
161 ESR_ReturnCode ESR_SessionTypeGetUint16_tImpl(ESR_SessionType* self, argument
168 data = self->data;
181 ESR_ReturnCode ESR_SessionTypeGetSize_tImpl(ESR_SessionType* self, argument
202 ESR_SessionTypeGetFloatImpl(ESR_SessionType* self, const LCHAR* name, float* value) argument
222 ESR_SessionTypeGetBoolImpl(ESR_SessionType* self, const LCHAR* name, ESR_BOOL* value) argument
242 ESR_SessionTypeGetLCHARImpl(ESR_SessionType* self, const LCHAR* name, LCHAR* value, size_t* len) argument
273 ESR_SessionTypeContainsImpl(ESR_SessionType* self, const LCHAR* name, ESR_BOOL* exists) argument
281 firePropertyChanged(ESR_SessionType* self, const LCHAR* name, const void* oldValue, const void* newValue, enum VariableTypes_t type) argument
302 ESR_SessionTypeSetPropertyImpl(ESR_SessionType* self, const LCHAR* name, void* value, VariableTypes type) argument
342 ESR_SessionTypeSetIntImpl(ESR_SessionType* self, const LCHAR* name, int value) argument
360 ESR_SessionTypeSetUint16_tImpl(ESR_SessionType* self, const LCHAR* name, asr_uint16_t value) argument
378 ESR_SessionTypeSetSize_tImpl(ESR_SessionType* self, const LCHAR* name, size_t value) argument
396 ESR_SessionTypeSetFloatImpl(ESR_SessionType* self, const LCHAR* name, float value) argument
414 ESR_SessionTypeSetBoolImpl(ESR_SessionType* self, const LCHAR* name, ESR_BOOL value) argument
432 ESR_SessionTypeSetLCHARImpl(ESR_SessionType* self, const LCHAR* name, LCHAR* value) argument
450 ESR_SessionTypeSetIntIfEmptyImpl(ESR_SessionType* self, const LCHAR* name, int value) argument
464 ESR_SessionTypeSetUint16_tIfEmptyImpl(ESR_SessionType* self, const LCHAR* name, asr_uint16_t value) argument
478 ESR_SessionTypeSetSize_tIfEmptyImpl(ESR_SessionType* self, const LCHAR* name, size_t value) argument
492 ESR_SessionTypeSetFloatIfEmptyImpl(ESR_SessionType* self, const LCHAR* name, float value) argument
506 ESR_SessionTypeSetBoolIfEmptyImpl(ESR_SessionType* self, const LCHAR* name, ESR_BOOL value) argument
520 ESR_SessionTypeSetLCHARIfEmptyImpl(ESR_SessionType* self, const LCHAR* name, LCHAR* value) argument
534 ESR_SessionTypeRemovePropertyImpl(ESR_SessionType* self, const LCHAR* name) argument
550 ESR_SessionTypeRemoveAndFreePropertyImpl(ESR_SessionType* self, const LCHAR* name) argument
577 ESR_SessionTypeImportCommandLineImpl(ESR_SessionType* self, int argc, LCHAR* argv[]) argument
669 ESR_SessionTypeGetSizeImpl(ESR_SessionType* self, size_t* size) argument
680 ESR_SessionTypeGetKeyAtIndexImpl(ESR_SessionType* self, size_t index, LCHAR** key) argument
692 ESR_SessionTypeConvertToIntImpl(ESR_SessionType* self, const LCHAR* key) argument
718 ESR_SessionTypeConvertToUint16_tImpl(ESR_SessionType* self, const LCHAR* key) argument
744 ESR_SessionTypeConvertToSize_tImpl(ESR_SessionType* self, const LCHAR* key) argument
770 ESR_SessionTypeConvertToFloatImpl(ESR_SessionType* self, const LCHAR* key) argument
796 ESR_SessionTypeConvertToBoolImpl(ESR_SessionType* self, const LCHAR* key) argument
840 importKeyValueFile(ESR_SessionType* self, const LCHAR* filename, ESR_ReturnCode(*addMapping)(ESR_SessionType* self, const LCHAR* key, LCHAR* value, void* data), void* data) argument
1013 parseIntList(ESR_SessionType* self, LCHAR* text, IntArrayList* list) argument
1046 ESR_SessionTypeGetPropertyTypeImpl(ESR_SessionType* self, const LCHAR* name, VariableTypes* type) argument
1067 addParMapping(ESR_SessionType* self, const LCHAR* key, LCHAR* value, void* data) argument
1155 ESR_SessionTypeImportParFileImpl(ESR_SessionType* self, const LCHAR* filename) argument
1349 ESR_SessionTypeAddListenerImpl(ESR_SessionType* self, ESR_SessionTypeListenerPair* listener) argument
1361 ESR_SessionTypeRemoveListenerImpl(ESR_SessionType* self, ESR_SessionTypeListenerPair* listener) argument
1373 ESR_SessionTypeDestroyImpl(ESR_SessionType* self) argument
[all...]
/external/srec/srec/EventLog/src/
H A DEventLogImpl.c98 ESR_ReturnCode propertyChanged(ESR_SessionTypeListener* self, const LCHAR* name, const void* oldValue, const void* newValue, VariableTypes variableType, void* data) argument
154 ESR_ReturnCode SR_EventLogCreate(SR_EventLog** self) argument
167 if (self == NULL)
177 *self = (SR_EventLog*)any_existing_eventlog;
283 *self = (SR_EventLog*) impl;
291 ESR_ReturnCode SR_EventLog_Destroy(SR_EventLog* self) argument
293 SR_EventLogImpl* impl = (SR_EventLogImpl*) self;
336 ESR_ReturnCode SR_EventLog_Token(SR_EventLog* self, const LCHAR* token, const LCHAR *value) argument
338 SR_EventLogImpl *impl = (SR_EventLogImpl *)self;
341 if (self
390 SR_EventLog_TokenInt(SR_EventLog* self, const LCHAR* token, int value) argument
405 SR_EventLog_TokenPointer(SR_EventLog* self, const LCHAR* token, void* value) argument
416 SR_EventLog_TokenUint16_t(SR_EventLog* self, const LCHAR* token, asr_uint16_t value) argument
431 SR_EventLog_TokenSize_t(SR_EventLog* self, const LCHAR* token, size_t value) argument
446 SR_EventLog_TokenBool(SR_EventLog* self, const LCHAR* token, ESR_BOOL value) argument
454 SR_EventLog_TokenFloat(SR_EventLog* self, const LCHAR* token, float value) argument
538 SR_EventLog_Event(SR_EventLog* self, const LCHAR* event) argument
600 writeRiffHeader(SR_EventLog* self) argument
653 SR_EventLog_AudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size) argument
682 SR_EventLog_AudioClose(SR_EventLog* self) argument
701 SR_EventLog_AudioWrite(SR_EventLog* self, void* buffer, size_t num_bytes) argument
724 SR_EventLog_AudioGetFilename(SR_EventLog* self, LCHAR* waveformFilename, size_t* len) argument
745 SR_EventLogEventSessionImpl(SR_EventLog* self) argument
[all...]
/external/srec/srec/Semproc/src/
H A DSemanticProcessorImpl.c106 ESR_ReturnCode SR_SemanticProcessorCreate(SR_SemanticProcessor** self) argument
111 if (self == NULL)
145 *self = (SR_SemanticProcessor*) impl;
152 ESR_ReturnCode SR_SemanticProcessor_Destroy(SR_SemanticProcessor* self) argument
154 SR_SemanticProcessorImpl* impl = (SR_SemanticProcessorImpl*) self;
156 if (self == NULL)
469 ESR_ReturnCode SR_SemanticProcessor_CheckParseByWordID(SR_SemanticProcessor* self, argument
489 SR_SemanticProcessorImpl* semproc = (SR_SemanticProcessorImpl*) self;
773 ESR_ReturnCode SR_SemanticProcessor_CheckParse(SR_SemanticProcessor* self, argument
795 SR_SemanticProcessorImpl* semproc = (SR_SemanticProcessorImpl*) self;
1297 SR_SemanticProcessor_SetParam(SR_SemanticProcessor* self, const LCHAR* key, const LCHAR* value) argument
1312 SR_SemanticProcessor_Flush(SR_SemanticProcessor* self) argument
[all...]
/external/webrtc/src/modules/audio_processing/aec/
H A Decho_cancellation.c803 aecpc_t* self = handle; local
808 const int kMsPerBlock = (PART_LEN * 1000) / self->splitSampFreq;
811 if (self == NULL) {
815 self->lastError = AEC_NULL_POINTER_ERROR;
819 self->lastError = AEC_NULL_POINTER_ERROR;
822 if (self->initFlag != initCheck) {
823 self->lastError = AEC_UNINITIALIZED_ERROR;
826 if (self->aec->delay_logging_enabled == 0) {
828 self->lastError = AEC_UNSUPPORTED_FUNCTION_ERROR;
834 num_delay_values += self
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dcustomization_document.cc541 base::WeakPtr<ServicesCustomizationDocument> self,
554 self,
540 ReadFileInBackground( base::WeakPtr<ServicesCustomizationDocument> self, const base::FilePath& file) argument
/external/chromium_org/chrome/browser/chromeos/login/ui/
H A Dlogin_display_host_impl.cc201 scoped_ptr<ShowLoginWizardSwitchLanguageCallbackData> self,
209 self->first_screen_name, self->startup_manifest, self->display_host);
200 OnLanguageSwitchedCallback( scoped_ptr<ShowLoginWizardSwitchLanguageCallbackData> self, const std::string& locale, const std::string& loaded_locale, const bool success) argument
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_browsertest.cc263 typedef ServiceWorkerBrowserTest self; typedef in class:content::ServiceWorkerBrowserTest
283 RunOnIOThread(base::Bind(&self::SetUpOnIOThread, this));
287 RunOnIOThread(base::Bind(&self::TearDownOnIOThread, this));
309 typedef EmbeddedWorkerBrowserTest self; typedef in class:content::EmbeddedWorkerBrowserTest
419 typedef ServiceWorkerVersionBrowserTest self; typedef in class:content::ServiceWorkerVersionBrowserTest
430 RunOnIOThread(base::Bind(&self::SetUpRegistrationOnIOThread, this,
437 base::Bind(&self::InstallOnIOThread, this,
447 base::Bind(&self::StopOnIOThread, this,
458 base::Bind(&self::SetUpRegistrationOnIOThread, this, worker_url));
465 &self
837 typedef ServiceWorkerBlackBoxBrowserTest self; typedef in class:content::ServiceWorkerBlackBoxBrowserTest
[all...]
/external/chromium_org/dbus/
H A Dbus.cc1168 Bus* self = static_cast<Bus*>(data); local
1169 return self->OnAddWatch(raw_watch);
1174 Bus* self = static_cast<Bus*>(data); local
1175 self->OnRemoveWatch(raw_watch);
1180 Bus* self = static_cast<Bus*>(data); local
1181 self->OnToggleWatch(raw_watch);
1186 Bus* self = static_cast<Bus*>(data); local
1187 return self->OnAddTimeout(raw_timeout);
1192 Bus* self = static_cast<Bus*>(data); local
1193 self
1198 Bus* self = static_cast<Bus*>(data); local
1206 Bus* self = static_cast<Bus*>(data); local
1218 Bus* self = static_cast<Bus*>(data); local
1233 Bus* self = static_cast<Bus*>(data); local
[all...]
/external/chromium_org/net/socket/
H A Dclient_socket_pool_base.h704 HigherLayeredPool* self,
712 helper_(self, max_sockets, max_sockets_per_group,
703 ClientSocketPoolBase( HigherLayeredPool* self, int max_sockets, int max_sockets_per_group, ClientSocketPoolHistograms* histograms, base::TimeDelta unused_idle_socket_timeout, base::TimeDelta used_idle_socket_timeout, ConnectJobFactory* connect_job_factory) argument
/external/chromium_org/net/tools/balsa/
H A Dbalsa_headers.h307 typedef iterator_base self; typedef in class:net::BalsaHeaders::iterator_base
323 bool operator==(const self& it) const {
327 bool operator<(const self& it) const {
331 bool operator<=(const self& it) const {
335 bool operator!=(const self& it) const {
339 bool operator>(const self& it) const {
343 bool operator>=(const self& it) const {
414 typedef reverse_iterator_base self; typedef in class:net::BalsaHeaders::reverse_iterator_base
427 self& operator=(const iterator_base& it) {
433 self
472 typedef const_header_lines_iterator self; typedef in class:net::BalsaHeaders::const_header_lines_iterator
495 typedef const_reverse_header_lines_iterator self; typedef in class:net::BalsaHeaders::const_reverse_header_lines_iterator
535 typedef const_header_lines_key_iterator self; typedef in class:net::BalsaHeaders::const_header_lines_key_iterator
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DRuntime.js92 var sourceURL = self._importScriptPathPrefix + scriptName;
103 var oldPrefix = self._importScriptPathPrefix;
104 self._importScriptPathPrefix += scriptName.substring(0, scriptName.lastIndexOf("/") + 1);
106 self.eval(scriptSource + "\n//# sourceURL=" + sourceURL);
108 self._importScriptPathPrefix = oldPrefix;
113 var baseUrl = self.location ? self.location.origin + self.location.pathname : "";
114 self._importScriptPathPrefix = baseUrl.substring(0, baseUrl.lastIndexOf("/") + 1);
196 var url = self
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
H A DDrawingBuffer.cpp316 RefPtr<DrawingBuffer> self = this; local
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DListHashSet.h382 ListHashSetNode* self = reinterpret_cast_ptr<ListHashSetNode*>(pointer); local
386 if (self->wasAlreadyDestructed())
389 self->m_value.~ValueArg();
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DCythonFunction.c48 #define __Pyx_CyFunction_NewEx(ml, flags, qualname, self, module, globals, code) \
49 __Pyx_CyFunction_New(__pyx_CyFunctionType, ml, flags, qualname, self, module, globals, code)
53 PyObject *self,
176 PyObject *self; local
178 self = m->func_closure;
179 if (self == NULL)
180 self = Py_None;
181 Py_INCREF(self);
182 return self;
563 PyObject *self local
736 PyObject *self; member in struct:__anon11751
757 __pyx_FusedFunction_New(PyTypeObject *type, PyMethodDef *ml, int flags, PyObject *qualname, PyObject *self, PyObject *module, PyObject *globals, PyObject *code) argument
774 __pyx_FusedFunction_dealloc(__pyx_FusedFunctionObject *self) argument
780 __pyx_FusedFunction_traverse(__pyx_FusedFunctionObject *self, visitproc visit, void *arg) argument
791 __pyx_FusedFunction_clear(__pyx_FusedFunctionObject *self) argument
801 __pyx_FusedFunction_descr_get(PyObject *self, PyObject *obj, PyObject *type) argument
858 __pyx_FusedFunction_getitem(__pyx_FusedFunctionObject *self, PyObject *idx) argument
939 PyObject *self; local
980 PyObject *self = NULL; local
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dtriostr.c1268 trio_string_t *self; local
1270 self = (trio_string_t *)TRIO_MALLOC(sizeof(trio_string_t));
1271 if (self)
1273 self->content = NULL;
1274 self->length = 0;
1275 self->allocated = 0;
1277 return self;
1289 TRIO_ARGS2((self, delta),
1290 trio_string_t *self,
1298 ? ( (self
1288 TrioStringGrow(self, delta), trio_string_t *self, size_t delta argument
1321 TrioStringGrowTo(self, length), trio_string_t *self, size_t length argument
1346 trio_string_t *self; local
1374 trio_string_destroy(self), trio_string_t *self argument
1404 trio_string_get(self, offset), trio_string_t *self, int offset argument
1451 trio_string_extract(self), trio_string_t *self argument
1482 trio_xstring_set(self, buffer), trio_string_t *self, char *buffer argument
1499 trio_string_size(self), trio_string_t *self argument
1513 trio_string_terminate(self), trio_string_t *self argument
1530 trio_string_append(self, other), trio_string_t *self, trio_string_t *other argument
1558 trio_xstring_append(self, other), trio_string_t *self, TRIO_CONST char *other argument
1585 trio_xstring_append_char(self, character), trio_string_t *self, char character argument
1615 trio_string_contains(self, other), trio_string_t *self, trio_string_t *other argument
1633 trio_xstring_contains(self, other), trio_string_t *self, TRIO_CONST char *other argument
1651 trio_string_copy(self, other), trio_string_t *self, trio_string_t *other argument
1670 trio_xstring_copy(self, other), trio_string_t *self, TRIO_CONST char *other argument
1693 trio_string_t *self; local
1724 trio_string_t *self; local
1751 trio_string_equal(self, other), trio_string_t *self, trio_string_t *other argument
1769 trio_xstring_equal(self, other), trio_string_t *self, TRIO_CONST char *other argument
1787 trio_string_equal_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1806 trio_xstring_equal_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1825 trio_string_equal_case(self, other), trio_string_t *self, trio_string_t *other argument
1843 trio_xstring_equal_case(self, other), trio_string_t *self, TRIO_CONST char *other argument
1861 trio_string_equal_case_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1880 trio_xstring_equal_case_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1899 trio_string_format_date_max(self, max, format, datetime), trio_string_t *self, size_t max, TRIO_CONST char *format, TRIO_CONST struct tm *datetime argument
1918 trio_string_index(self, character), trio_string_t *self, int character argument
1935 trio_string_index_last(self, character), trio_string_t *self, int character argument
1952 trio_string_length(self), trio_string_t *self argument
1972 trio_string_lower(self), trio_string_t *self argument
1988 trio_string_match(self, other), trio_string_t *self, trio_string_t *other argument
2006 trio_xstring_match(self, other), trio_string_t *self, TRIO_CONST char *other argument
2024 trio_string_match_case(self, other), trio_string_t *self, trio_string_t *other argument
2042 trio_xstring_match_case(self, other), trio_string_t *self, TRIO_CONST char *other argument
2060 trio_string_substring(self, other), trio_string_t *self, trio_string_t *other argument
2078 trio_xstring_substring(self, other), trio_string_t *self, TRIO_CONST char *other argument
2096 trio_string_upper(self), trio_string_t *self argument
[all...]
/external/chromium_org/third_party/pymock/
H A Dmock.py119 self = 'im_self' variable
122 self = '__self__' variable
182 # instance methods and classmethods need to lose the self argument
183 if getattr(func, self, None) is not None:
209 # can't use self because "self" is common as an argument name
342 def __init__(self, name):
343 self.name = name
345 def __repr__(self):
346 return 'sentinel.%s' % self
[all...]
/external/chromium_org/v8/src/
H A Dscanner.h311 explicit LiteralScope(Scanner* self) argument
312 : scanner_(self), complete_(false) {
/external/guava/guava/src/com/google/common/collect/
H A DMaps.java2084 Map<K, V> self, Map<? extends K, ? extends V> map) {
2086 self.put(entry.getKey(), entry.getValue());
2083 putAllImpl( Map<K, V> self, Map<? extends K, ? extends V> map) argument
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMaps.java2055 Map<K, V> self, Map<? extends K, ? extends V> map) {
2057 self.put(entry.getKey(), entry.getValue());
2054 putAllImpl( Map<K, V> self, Map<? extends K, ? extends V> map) argument
/external/libxml2/
H A Dtriostr.c1268 trio_string_t *self; local
1270 self = (trio_string_t *)TRIO_MALLOC(sizeof(trio_string_t));
1271 if (self)
1273 self->content = NULL;
1274 self->length = 0;
1275 self->allocated = 0;
1277 return self;
1289 TRIO_ARGS2((self, delta),
1290 trio_string_t *self,
1298 ? ( (self
1288 TrioStringGrow(self, delta), trio_string_t *self, size_t delta argument
1321 TrioStringGrowTo(self, length), trio_string_t *self, size_t length argument
1346 trio_string_t *self; local
1374 trio_string_destroy(self), trio_string_t *self argument
1404 trio_string_get(self, offset), trio_string_t *self, int offset argument
1451 trio_string_extract(self), trio_string_t *self argument
1482 trio_xstring_set(self, buffer), trio_string_t *self, char *buffer argument
1499 trio_string_size(self), trio_string_t *self argument
1513 trio_string_terminate(self), trio_string_t *self argument
1530 trio_string_append(self, other), trio_string_t *self, trio_string_t *other argument
1558 trio_xstring_append(self, other), trio_string_t *self, TRIO_CONST char *other argument
1585 trio_xstring_append_char(self, character), trio_string_t *self, char character argument
1615 trio_string_contains(self, other), trio_string_t *self, trio_string_t *other argument
1633 trio_xstring_contains(self, other), trio_string_t *self, TRIO_CONST char *other argument
1651 trio_string_copy(self, other), trio_string_t *self, trio_string_t *other argument
1670 trio_xstring_copy(self, other), trio_string_t *self, TRIO_CONST char *other argument
1693 trio_string_t *self; local
1724 trio_string_t *self; local
1751 trio_string_equal(self, other), trio_string_t *self, trio_string_t *other argument
1769 trio_xstring_equal(self, other), trio_string_t *self, TRIO_CONST char *other argument
1787 trio_string_equal_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1806 trio_xstring_equal_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1825 trio_string_equal_case(self, other), trio_string_t *self, trio_string_t *other argument
1843 trio_xstring_equal_case(self, other), trio_string_t *self, TRIO_CONST char *other argument
1861 trio_string_equal_case_max(self, max, other), trio_string_t *self, size_t max, trio_string_t *other argument
1880 trio_xstring_equal_case_max(self, max, other), trio_string_t *self, size_t max, TRIO_CONST char *other argument
1899 trio_string_format_date_max(self, max, format, datetime), trio_string_t *self, size_t max, TRIO_CONST char *format, TRIO_CONST struct tm *datetime argument
1918 trio_string_index(self, character), trio_string_t *self, int character argument
1935 trio_string_index_last(self, character), trio_string_t *self, int character argument
1952 trio_string_length(self), trio_string_t *self argument
1972 trio_string_lower(self), trio_string_t *self argument
1988 trio_string_match(self, other), trio_string_t *self, trio_string_t *other argument
2006 trio_xstring_match(self, other), trio_string_t *self, TRIO_CONST char *other argument
2024 trio_string_match_case(self, other), trio_string_t *self, trio_string_t *other argument
2042 trio_xstring_match_case(self, other), trio_string_t *self, TRIO_CONST char *other argument
2060 trio_string_substring(self, other), trio_string_t *self, trio_string_t *other argument
2078 trio_xstring_substring(self, other), trio_string_t *self, TRIO_CONST char *other argument
2096 trio_string_upper(self), trio_string_t *self argument
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-diff.c305 static int hists__add_entry(struct hists *self, argument
309 if (__hists__add_entry(self, al, NULL, period, weight) != NULL)

Completed in 8522 milliseconds

1234567891011>>